GET /company/shops/@id/user-discounts
This endpoint requires authentication.
Header | Value |
---|---|
Authorization | Set the value to Bearer + + access_token |
Replace the @ keywords in the URL with their corresponding value.
A dictionary with fields
Field | Type | Description |
---|---|---|
id | Int | Shop ID |
GET /company/shops/13/user-discounts HTTP/1.1
Host: api.bakeronline.be
X-VERSION: 1.10.0
Accept-Language: en-US,en;q=0.5
Array of company.UserDiscount: [company.UserDiscount]
Field | Type | Description |
---|---|---|
percent | Int | An integer value |
user | Dictionary | A dictionary with fields |
id | Int | An integer value |
shop_id | Int | An integer value |
HTTP/1.1 200 OK
Content-Type: application/json; charset=utf-8
Content-Length: 509
[
{
"percent": 12,
"user": {
"id": 12,
"email": "example@domain.com"
},
"id": 19,
"shop_id": 13
},
{
"percent": 16,
"user": {
"id": 12,
"email": "example@domain.com"
},
"id": 16,
"shop_id": 11
},
{
"percent": 15,
"user": {
"id": 12,
"email": "example@domain.com"
},
"id": 16,
"shop_id": 12
}
]