Favicon

You are here: Home > API Reference > UEM > Mdm Users > Download sample CSV template

GET /organizations/:organizationId/mdm/users/csv/sample

Required Permission: mdm.global.mdmUser.list

Download template CSV file demonstrating correct format and required fields for bulk importing device management users into system.

GET
https://api.applivery.io/v1/organizations/{organizationId}/mdm/users/csv/sample
curl -X GET "https://api.applivery.io/v1/organizations/{organizationId}/mdm/users/csv/sample" \
  -H "Authorization: Bearer <YOUR_API_KEY>"
const response = await fetch("https://api.applivery.io/v1/organizations/{organizationId}/mdm/users/csv/sample", {
  method: "GET",
  headers: {
    Authorization: "Bearer <YOUR_API_KEY>",
  },
});

const data = await response.json();
import requests

response = requests.get(
    "https://api.applivery.io/v1/organizations/{organizationId}/mdm/users/csv/sample",
    headers={"Authorization": "Bearer <YOUR_API_KEY>"},
)

data = response.json()

Request

Send your API key in the request header authorization
Example: Authorization: Bearer <token>

organizationId string
required
Organization identifier or URL-friendly slug for scoping user operations within specific workspace and access control boundaries.
Match pattern: ^(([a-fA-F0-9]{24})|([a-zA-Z0-9\\-]{3,}))$

Responses

{
  "type": "object",
  "properties": {}
}
400 Response application/json
status boolean optional
false
error object optional
code number optional
5138
message string optional
Not implemented
{
    "status": false,
    "error": {
        "code": 5138,
        "message": "Not implemented"
    }
}
401 Response application/json
status boolean optional
false
error object optional
code number optional
4001
message string optional
Unauthorized
{
    "status": false,
    "error": {
        "code": 4002,
        "message": "No auth token"
    }
}
404 Response application/json
status boolean optional
false
error object optional
code number optional
3001
message string optional
Entity not found
{
    "status": false,
    "error": {
        "code": 3001,
        "message": "Entity not found"
    }
}