Store Loyalty Status
GET
v1/customers/loyalty-program/1/loyalty-statusRetrieves information about the overall status (active/inactive) and program name of a store's loyalty program.
Request
Unique identifier of the store.
Specifies the Media Types acceptable for the client. In this case, it signals that the client expects a response in the JSON format.
Preferred language for the response. Defaults to en
if not specified.
Type of the content.
Request samples
Responses
Indicates the overall status of the API response.
Indicates whether the customer is currently enrolled in the loyalty program. In this example, the value is true, meaning the customer is part of the loyalty program.
Contains additional information or messages related to the API response.
Specifies the type of message.
A code representing any specific message or error.
A short, human-readable title or name for the message.
A detailed description of the message.
{
"status": "string",
"loyalty_status": true,
"message": {
"type": "string",
"code": null,
"name": null,
"description": null
}
}