Create a user discount entry

POST /company/shops/@id/user-discounts/@user_id

Request

Authentication

This endpoint requires authentication.

Header Value
Authorization Set the value to Bearer + + access_token

URL parameters

Replace the @ keywords in the URL with their corresponding value.

A dictionary with fields

Field Type Description
id Int Shop ID
user_id Int User ID

Body

Pass the following properties via application/json or form encoding in the body of the request.

Field Type Description
percent Int An integer value

Example request 1

POST /company/shops/19/user-discounts/11 HTTP/1.1
Host: api.bakeronline.be
X-VERSION: 1.9.0
Accept-Language: en-US,en;q=0.5
Content-Type: application/json
Content-Length: 21
{
    "percent": 15
}

Response

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

Example response 1

HTTP/1.1 200 OK
Content-Type: application/json; charset=utf-8
Content-Length: 131

{
    "percent": 15,
    "user": {
        "id": 10,
        "email": "example@domain.com"
    },
    "id": 15,
    "shop_id": 14
}
1.9.0 stable