Skip to main content
GET
/
networks
/
advertisers
/
users
List All Advertiser Users
curl --request GET \
  --url https://api.eflow.team/v1/networks/advertisers/users \
  --header 'X-Eflow-Api-Key: <api-key>'
[
  {
    "network_advertiser_user_id": 123,
    "network_advertiser_id": 123,
    "first_name": "<string>",
    "last_name": "<string>",
    "email": "<string>",
    "title": "<string>",
    "account_status": "active",
    "work_phone": "<string>",
    "cell_phone": "<string>",
    "language_id": 123,
    "timezone_id": 123,
    "currency_id": "<string>",
    "time_created": 123,
    "time_saved": 123
  }
]

Authorizations

X-Eflow-Api-Key
string
header
required

The Everflow API key generated from the Control Center > Security.

Response

200 - application/json

OK

network_advertiser_user_id
integer

Unique advertiser user ID.

network_advertiser_id
integer

The advertiser ID this user belongs to.

first_name
string

User's first name.

last_name
string

User's last name.

email
string

User's email address.

title
string

User's job title.

account_status
enum<string>

User account status.

Available options:
active,
inactive
work_phone
string

User's work phone number.

cell_phone
string

User's cell phone number.

language_id
integer

Language ID.

timezone_id
integer

Timezone ID.

currency_id
string

ISO currency code.

time_created
integer

Unix timestamp of creation.

time_saved
integer

Unix timestamp of last update.