Warning: API Version 1 is deprecated. Please use API Version 2.
Api Documentation

Users

Users are the members that will stay in-the-loop through Bundeling. A user can be bound to a Customer through the customer_id field. When retrieving users, the picture field contains an ID that can be used in the FILES endpoint. Posting or updating user pictures is also done through the FILES endpoint. Please refer to the documentation of said endpoint for more information. The label field is only visible to API keys that do not require user authentication.
Retrieves a collection of users and information about them.
Retrieves a single user and information about him/her.
Creates a new user. Only available to API keys without user authentication.
Updates a user. API keys without user authentication can update all users. API keys that require user authentication can only update the current user.
Deletes a single user. Only available to API keys without user authentication.
Json
XML
GET https://api.bundeling.com/V1/users

Parameters

Url

NameDescriptionType
idA unique integer used to identify a userint

Example request

Headers

Content-Type:application/json
Api-Key:RAegSX8yZfEbqSPM

Example response

{
    "id": 14,
    "customer_id": 6,
    "username": "johndoe",
    "name": "John Doe",
    "function": "Employee",
    "birthday": "1986-04-22",
    "email": "johndoe@email.com",
    "telephone": "+31412345678",
    "mobilephone": "+31612345678",
    "linkedin": "https://www.linkedin.com/in/eric-van-den-brand-a4769a/",
    "picture": "LCJwYeyJjbGllbnQiOjEwXRoIjoidXNlcnNcLzE1XC91...",
    "notes": "Lorem ipsum dolor sit amet, consectetur adipiscing elit...",
    "external_reference": "123908",
    "hidden": false,
    "labels": [
        1,
        4,
        10
    ]
}