Skip to main content
GET
/
advertisers
/
{advertiserID}
/
users
List Users
curl --request GET \
  --url https://api.embedads.com/advertisers/{advertiserID}/users \
  --header 'Authorization: Bearer <token>'
[
    {
        "advertiser_id": 1,
        "email": "email@example.com",
        "created_at": "2020-01-01T00:00:00Z",
        "role": "ADMIN"
    }
]

Query Parameters

limit
string
default:"10"
The maximum number of advertisers to return. Must be between 1 and 20.
page
string
default:"1"
The page number of the results.

Path Parameters

advertiserID
number
required
The advertiser ID.

Response

advertiser_id
number
The advertiser ID.
email
string
The email address of the user.
created_at
string
A timestamp of when the user was created.
role
string
The role of the user. Currently, only ADMIN is supported.
[
    {
        "advertiser_id": 1,
        "email": "email@example.com",
        "created_at": "2020-01-01T00:00:00Z",
        "role": "ADMIN"
    }
]