List all POS Offer Codes

List POS offer codes by account ID.

Headers
  • Content-Type
    Type: string

    application/json

Responses
  • application/json
  • 401

    Unauthorized

  • application/json
Request Example for get/pos_offer_codes
curl /pos_offer_codes \
  --header 'Content-Type: application/json' \
  --header 'X-Auth-Token: YOUR_SECRET_TOKEN'
{
  "page": 1,
  "per_page": 1,
  "total_entries": 1,
  "total_pages": 1,
  "pos_offer_codes": [
    {
      "pos_offer_code": {
        "account_id": 1,
        "code": "string",
        "description": "string",
        "pos_offer_code_type_id": null,
        "pos_offer_code_pos_id": null,
        "pos_offer_code_type_name": null,
        "pos_offer_code_pos_name": null
      },
      "errors": {}
    }
  ]
}