POST
/manager/points-of-sale
curl \
--request POST 'https://domain.tld/api/v2/manager/points-of-sale' \
--header "Authorization: Bearer $ACCESS_TOKEN" \
--header "Content-Type: application/json" \
--data '{"active":true,"external_id":"string","labels":[],"descriptions":[],"hours":[],"pos_type":1,"phone":"string","email":"string","external_url":"string"}'
Request examples
{
"active": true,
"external_id": "string",
"labels": [],
"descriptions": [],
"hours": [],
"pos_type": 1,
"phone": "string",
"email": "string",
"external_url": "string"
}
Response examples (201)
{
"id_point_of_sale": 42,
"date_insert": "string",
"date_update": "string",
"active": true,
"external_id": "string",
"pos_type": 42,
"phone": "string",
"email": "string",
"external_url": "string",
"members": [],
"labels": [],
"descriptions": [],
"hours": []
}