Skip to main content
GET
/
discount-codes
List discount codes
curl --request GET \
  --url https://{your-subdomain}.neetocal.com/api/external/v2/discount-codes \
  --header 'X-Api-Key: <x-api-key>'
{
  "discount_codes": [
    {
      "id": "8f3b9f6e-2e3a-4c7a-91c5-7f9b2a123456",
      "code": "OFF10",
      "value": 10,
      "expires_at": "2026-06-30T23:59:59.000Z",
      "redeems_limit": 100,
      "redeems_limit_by_email": 1,
      "days_valid_after_first_use_per_client": 30,
      "redeems_count": 12,
      "meetings": [
        {
          "id": "3d4e5f6a-7b8c-4d9e-90f1-123456789abc",
          "name": "Product Demo"
        }
      ]
    }
  ],
  "pagination": {
    "total_records": 123,
    "total_pages": 123,
    "current_page_number": 123,
    "page_size": 123
  }
}

Documentation Index

Fetch the complete documentation index at: https://apidocs.neetocal.com/llms.txt

Use this file to discover all available pages before exploring further.

Replace {your-subdomain} with your workspace’s subdomain.
Learn how to find your subdomain in Workspace subdomain.

Headers

X-Api-Key
string
required

Use the X-Api-Key header to provide your workspace API key. Refer to Authentication for more information.

Query Parameters

page
integer

Page number for paginated results.

page_size
integer

Number of results per page.

Response

200 - application/json

OK - Request succeeded

discount_codes
object[]
pagination
object