Get one of your discount codes by ID
GET
/api/v1/scent/discount-codes/{id}
const url = 'https://api-omni.linra.net/api/v1/scent/discount-codes/2489E9AD-2EE2-8E00-8EC9-32D5F69181C0';const options = {method: 'GET', headers: {Authorization: 'Bearer <token>'}};
try { const response = await fetch(url, options); const data = await response.json(); console.log(data);} catch (error) { console.error(error);}curl --request GET \ --url https://api-omni.linra.net/api/v1/scent/discount-codes/2489E9AD-2EE2-8E00-8EC9-32D5F69181C0 \ --header 'Authorization: Bearer <token>'Authorizations
Section titled “Authorizations”Parameters
Section titled “Parameters”Path Parameters
Section titled “Path Parameters”id
required
string format: uuid
Responses
Section titled “Responses”The code, including usage stats.
Media typeapplication/json
object
state
required
string
payload
required
details
object
payload
required
object
id
string format: uuid
partnerId
string format: uuid
code
string
discountType
A percentage (0,100] off, or a flat SAR amount off.
string
value
number format: decimal
validFrom
string format: date-time
validTo
string format: date-time
isActive
boolean
totalUsageCap
integer
perCustomerCap
integer
productScope
Applies to your whole catalog, or to an explicit variant list (see scopedVariantIds).
string
scopedVariantIds
Array<string>
minOrderValue
number format: decimal
usageCount
Running total of successful redemptions.
integer
createdAt
string format: date-time
lastModifiedAt
string format: date-time
Example
{ "state": "SUCCESS", "payload": { "discountType": "Percent", "productScope": "All" }}Unknown code (or it belongs to another account).
Media typeapplication/json
The envelope every /api/v1 ERROR response uses. state carries the machine-readable error code (see the Errors guide).
object
state
required
string
payload
required
Always null on an error response.
object
details
object
Examples
ExamplenotFound
{ "state": "NOT_FOUND_DISCOUNT_CODE", "payload": null, "details": {}}Too many requests — see the Rate limits guide. Retry after the Retry-After header (seconds).
Media typeapplication/json
The envelope every /api/v1 ERROR response uses. state carries the machine-readable error code (see the Errors guide).
object
state
required
string
payload
required
Always null on an error response.
object
details
object
Example
{ "state": "NOT_FOUND_ORDER", "payload": null}Headers
Section titled “Headers”Retry-After
integer
Seconds to wait before retrying.