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/V2/users

Includes

NameDescriptionEndpoint
user_notesRetrieves a collection of user notes of the logged in user about listed userUserNotes
user_statusRetrieves the current user status of the logged in user about listed userUserStatus
user_status.custom_statusRetrieves the custom status of a user.CustomStatus
user_connectionsRetrieves list of connections user has by sending inviteUserConnections
user_connections2Retrieves list of connections user has by receiving inviteUserConnections
customerRetrieves information about the customer (company) that is bound to the userCustomers

Example request

Headers

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

Example response

{
    "data": [
        {
            "uuid": "eeb763c41c054dcc8f6d9362f24ee9b2",
            "customer_uuid": "d7743aaf53224e279853c7d0c1dbfb3a",
            "username": "johndoe",
            "firstname": "John",
            "surname": "Doe",
            "name": "John Doe",
            "gender": "male",
            "function": "Employee",
            "birthday": "1986-04-22",
            "email": "johndoe@email.com",
            "telephone": "+31412345678",
            "mobilephone": "+31612345678",
            "additional_info": "Lorem ipsum dolor sit amet, consectetur adipiscing elit...",
            "facebook": "https://www.facebook.com/BundelingApp/",
            "twitter": "https://twitter.com/bundelingapp",
            "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,
            "deactivated": false,
            "labels": [
                "56f9e6a8e64f4fb3a98a10e14af918d2",
                "21f84db96e6e4febbcd2010bc26ea07a"
            ],
            "metadata": {
                "name": "value"
            },
            "creationdate": "2024-01-20T00:00:00+0100",
            "lastupdate": "2024-01-20T00:00:00+0100"
        }
    ],
    "pagination": {
        "total": 1,
        "per_page": 100,
        "current_page": 1,
        "total_pages": 1
    }
}