Create permissions for a certain user

POST /company/companies/@id/permissions/users

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 The ID of the company

Body

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

A dictionary with fields

Field Type Description
email String A String value

Example request 1

POST /company/companies/14/permissions/users HTTP/1.1
Host: api.bakeronline.be
X-VERSION: 1.10.0
Accept-Language: en-US,en;q=0.5
Content-Type: application/json
Content-Length: 22
{
    "email": "..."
}

Response

Field Type Description
shop_ids [Int] User has access to these shops
permissions Dictionary A dictionary with fields
id Int Id of the permissions entry
user Dictionary A dictionary with fields

Example response 1

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

{
    "shop_ids": [
        17,
        19,
        15
    ],
    "permissions": {
        "company_info": false,
        "holidays": false,
        "newsletters": true,
        "translations": false,
        "permissions": false,
        "email_settings": false,
        "products": false,
        "shop_info": false,
        "checkout_settings": true,
        "time_settings": false,
        "discounts": false
    },
    "id": 10,
    "user": {
        "id": 19,
        "email": "..."
    }
}
This is a development version Do not use this version in production
1.10.0 development