Skip to main content

Get a Specific Prize

This endpoint retrieves a specific prize

info

This operation requires authentication and admin or editor role to get a not active prize.

HTTP Request

GET /api/v2/loyalty/prize/{id}/

Parameters

NameInTypeRequiredDescription
idpathstringtrueA unique integer value identifying this loyalty prize

Example Request


const headers = {
'Accept':'application/json',
'Authorization': 'Bearer {access_token}'
};

fetch('/api/v2/loyalty/prize/{id}/',
{
method: 'GET',
headers: headers
})
.then(function(res) {
return res.json();
}).then(function(body) {
console.log(body);
});

Responses

StatusMeaningDescriptionSchema
200OKResponse status codeLoyalty Prize

Example responses

{
"id": "integer",
"active": "boolean",
"title": "string",
"description": "string",
"points": "integer",
"link": "string(uri)",
"image": "string",
"created_at": "string",
"lastmod_datetime": "string",
"created_by": {User}
}