+49 69 83008980 service@xqueue.com
Benötigen Sie Hilfe?

Im Maileon Help-Center finden Sie umfassende Dokumentationen zu unserem System.

Beliebte Suchanfragen: Importe | Rest-API | Integrationen | SMS

Get all User Accounts

Sie sind hier:

 

Get all User Accounts

GET https://api.maileon.com/partner/settings/users?key={key}&nl_account_id={newsletterAccountId}

Description: Retrieve a list of all user accounts of a newsletter account.

Parameters:
– key: apikey
– nl_account_id: int // the id of the newsletter account

Returns:
– email: string
– firstName: string
– lastName: string
– theme: string (the theme key can be found by checking the corresponding dropdown in the UI)
– locale: string (de, en, fr, …)
– roles: array of role objects containing attributes
o custom: boolean (describes if this is a standard or custom rule)
o id: int
o name: string
o selected: boolean
o userCount: int
– created: string

Example:

[
{
"email": "max.mustermann@xqueue.com",
"firstName": "Max",
"lastName": "Mustermann",
"theme": "1",
"locale": "de",
"roles": [
{
"custom": false,
"id": 6205,
"name": "accountadmin",
"selected": true,
"userCount": 0
}
],
"created": "2021-06-10T11:05:13.000+0200"
}
]

Inhaltsverzeichnis