GET accounts/:account_id

Retrieve detailed information on the specified account that the authenticating user has access to.

Resource URL

https://ads-api.twitter.com/1/accounts/:account_id

Resource Information

Response formats
JSON
Requires authentication?
Yes (user context only)
Rate limited?
Yes

Parameters

account_id required

The identifier for the leveraged account. Appears within the resource’s path and is generally a required parameter for all Advertising API requests excluding GET accounts. The specified account must be associated with the authenticating user.

Example Values: 43853bhii879

with_deleted optional

Include deleted results in your request. Defaults to false.

Example Values: true

OAuth Signature Generator

Sign in to see a list of your registered applications.

Example Request

GET

https://ads-api.twitter.com/1/accounts/hkk5

Example Result

 
{
    "data": {
        "approval_status": "ACCEPTED",
        "created_at": "2014-07-14T22:51:48Z",
        "deleted": false,
        "id": "hkkd",
        "name": "Some person named Emma",
        "salt": "973fef8gce1c5d5f6bba4b91827c214a",
        "timezone": "America/Los_Angeles",
        "timezone_switch_at": "2014-07-27T07:00:00Z",
        "updated_at": "2014-08-27T21:59:56Z"
    },
    "data_type": "account",
    "request": {
        "params": {
            "account_id": "hkkd"
        }
    }
}