The me call

Return a combination of User and Client information in one call.

There is a handy combined API call to find out a combination of User and Client information in one go:

curl -X GET https://api.brandwatch.com/me

The response will look like the following. It will also contain a link to more detailed User information and a link to log out.

{
    "id": 328973287,
    "username": "[email protected]",
    "uiRole": "user",
    "firstName": "Wile E.",
    "tags": {
        "notify": "true"
    },
    "client": {
        "id": 3328928272,
        "name": "ACME Robotics",
        "theme": "brandwatch",
        "parentId": -1,
        "userInactivityTimeoutMinutes": 1440,
        "priceStructureName": "Legacy",
        "queryLimit": 20000,
        "mentionLimit": -1,
        "priceStructureLineCost": 0,
        "startDate": "0024-07-30T00:00:00.000+0000"
    },
    "crmAccount": null,
    "passwordExpiryDate": null,
    "creationDate": "2016-06-29T16:19:17.744+0000",
    "lastName": "Coyote"
}