Attach an ambassador point of sale (manager)

POST /manager/ambassadors/{id}/point-of-sale/{pointOfSale}

Path parameters

  • id integer Required

    The ambassador id

  • pointOfSale integer Required

    The point of sale id

Responses

  • 200 application/json

    success

    Hide response attribute Show response attribute object
    • message string
  • 403

    Forbidden - You don't have permission to access this route

  • 404

    Not found - The ambassador does not exist

POST /manager/ambassadors/{id}/point-of-sale/{pointOfSale}
curl \
 --request POST 'https://domain.tld/api/v2/manager/ambassadors/{id}/point-of-sale/{pointOfSale}' \
 --header "Authorization: Bearer $ACCESS_TOKEN"
Response examples (200)
{
  "message": "Point of sale attached successfully"
}