Skip to main content
POST
/
business
/
{business_id}
/
additional_data
Set additional data for your business
curl --request POST \
  --url https://api.partoo.co/v2/business/{business_id}/additional_data \
  --header 'Content-Type: application/json' \
  --header 'x-APIKey: <api-key>' \
  --data '{
  "additionnal_data_1": "Some data",
  "additionnal_data_2": 3.1415
}'
{
  "id": "5409c35a97bbc544d8e26737",
  "status": "success"
}

Authorizations

x-APIKey
string
header
required

The authentication system on Partoo API is using API Key that should be put in the header of the request (the name of the header is x-APIKey). An api_key is linked to a user. This user's role will give you different access level to the API features.

Path Parameters

business_id
string
required

Business id.

It may be replaced by c-{code} where code is the store code, which should be unique per organization. This can be used only for ORG_ADMIN, GROUP_MANAGER and BUSINESS_MANAGER users.

Body

application/json

A flat object (ie. without nested value) with at most 10 keys

additionnal_data_1
string
Example:

"Some data"

additionnal_data_2
number
Example:

3.1415

Response

OK

id
string

Business id

Example:

"5409c35a97bbc544d8e26737"

status
enum<string>

Request status

Available options:
success