Get Promotion Codes
GEThttps://useast.api.elasticpath.com/v2/promotions/:promotionID/codes
You can use this endpoint to retrieve promotion codes.
note
- The
codes.max_uses
attribute represents the maximum usage of the codes. - The
codes.uses
attribute represents the remaining number of times the codes can be used for the promotion. - Codes created before April 27, 2023 will only have
codes.uses
attribute in the response body.
Request
Path Parameters
promotionID stringrequired
The unique identifier of the promotion.
Header Parameters
Authorization Bearerrequired
The Bearer token required to get access to the API.
Responses
- 200
- 401
Response Headers
- application/json
- Schema
- Example (from schema)
Schema
data object[]
links object
meta object
{
"data": [
{
"data": {
"codes": [
{
"code": "string",
"consume_unit": "string",
"user": "string",
"uses": 0,
"created_by": "string",
"meta": {
"timestamps": {
"created_at": "2023-11-07T23:04:18.845Z"
}
}
}
]
}
}
],
"links": {
"current": "string",
"first": "string",
"last": "string",
"next": "string",
"prev": "string"
},
"meta": {
"page": {
"current": 0,
"limit": 0,
"offset": 0,
"total": 0
},
"results": {
"total": 0
}
}
}
Unauthorized
- application/json
- Schema
- Example (from schema)
- Example
Schema
detail string
status string
title string
[
null
]
{
"errors": {
"status": 401,
"title": "Unauthorized"
}
}
Authorization: http
name: bearerAuthtype: httpscheme: bearer
- curl
- python
- go
- nodejs
- ruby
- csharp
- php
- java
- powershell
- CURL
curl -L -X GET 'https://useast.api.elasticpath.com/v2/promotions/:promotionID/codes' \
-H 'Accept: application/json' \
-H 'Authorization: Bearer <TOKEN>'
ResponseClear