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

Login

Some functions in this API required user authentication. Authentication is done through an "Authorization" header containing "BundelingAuth" and a unique user token. User tokens can be obtained by calling the CREATE method of this endpoint. The resulting header will look similar to this: "Authorization: BundelingAuth 23oFSWFoij3r:jjd6A34tDFGZs"
Creates a login token for a user.
Json
XML
POST https://api.bundeling.com/V1/login

Parameters

Body

NameDescriptionTypeNillableRequired
usernameA unique sequence of characters used to identify a userstringfalsetrue
passwordA secret word or phrase that must be used to gain admission to the systemstringfalsetrue

Example request

Headers

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

Body

{
    "username": "johndoe",
    "password": "p@$$w0rd"
}

Example response

{
    "token": "7a1c181a5f2d49caacdf817d6b96b650:08aeb1ce3ddf80ac3f6b4da39ce36485fdeae844"
}