Skip to content

POS Register

This endpoint will allow you to register a POS for your MID. This endpoint is used when self-registration is enabled for the merchant. When working with our boarding team, this step is often completed on your behalf.

Request Example

POST to endpoint /pos

sh
curl -sS https://f1ysoj9np6.execute-api.us-west-2.amazonaws.com/dev/pos \
  -H "Content-Type: application/json"                                   \
  -H "Authorization: <APIToken>"                                        \
  -d '
{
  "MID": ""
}
'

Response Example

json
{
  "PosId": "",
  "Token": "",
  "Approved": true,
  "ResponseText": "Approved"
}