Returns a CSV file with username, first name, last name, and licenses columns. 

You can set a limit to the number of users returned in the CSV, or if you omit a limit query parameter, this will default to the first 10 users.

GET

/admin/1/0/users/export

HeaderRequiredDescription
Authorization: AnaplanAuthToken {anaplan_auth_token}YesThe Anaplan authentication token.
Accept: text/csvNoThe response type. This value defaults to text/csv
Query parameterRequiredDescription
LimitOptionalSets the maximum number of users to return. The default is to return all users, by omission.
OffsetOptionalSets the offset number for the starting point of the data fetch.

CURL -X GET 'https://api.anaplan.com/admin/1/0/users/export'

-H 'Authorization: AnaplanAuthToken {anaplan_auth_token}' \

-H 'Accept: text/csv'

A successful request returns an HTTP 200 response, and a CSV-formatted file containing the user data.

If the request is unsuccessful, the API returns an error code.

ErrorCodeErrorMessageDescription
400INVALIDInvalid request parameters.
401UNAUTHORIZEDAuthorization token is missing or invalid.
403FORBIDDENUser is not allowed to perform this operation.

Read about the import endpoint.