APIs to create and access DEP tokens. Learn more about DEP tokens
Generate the public key file which is uploaded to Apple Business Manager(ABM) console to generate the DEP token.
Public key generation for ABM
Public key generation error - Bad Request
Public key generation error - Unauthorized
Public key generation error - Internal Server Error
{ }
{- "code": 400,
- "message": "string",
- "content": { }
}
Get the list of all DEP tokens available in the tenant
Lists all dep tokens for a tenant
Get DEP tokens error - Unauthorized
Get DEP tokens error - Internal Server Error
{- "code": 0,
- "message": "string",
- "content": {
- "count": 0,
- "next": "string",
- "prev": "string",
- "results": [
- {
- "id": "string",
- "token_name": "string",
- "meta": {
- "token_expiry_on": "string"
}, - "state": "CSR_GENERATED",
- "created_by": "string",
- "updated_by": "string",
- "created_at": "string",
- "updated_at": "string"
}
]
}
}
Retrive information of a DEP token by ID
Get DEP token by id
Get DEP token by id error - Unauthorized
Not Found
Get DEP token by id error - Internal Server Error
{- "code": 0,
- "message": "string",
- "content": {
- "schema": {
- "id": "string",
- "token_name": "string",
- "meta": {
- "token_expiry_on": "string"
}, - "state": "CSR_GENERATED",
- "created_by": "string",
- "updated_by": "string",
- "created_at": "string",
- "updated_at": "string"
}
}
}
Upload dep token for a public key for a tenant based on ID of DEP public key
Upload dep token for a public key by id
Upload DEP token by id error - Bad Request
Upload DEP token by id error - Unauthorized
Not Found
Upload DEP token by id error - Internal Server Error
{- "code": 0,
- "message": "string",
- "content": {
- "schema": {
- "id": "string",
- "token_name": "string",
- "meta": {
- "token_expiry_on": "string"
}, - "state": "CSR_GENERATED",
- "created_by": "string",
- "updated_by": "string",
- "created_at": "string",
- "updated_at": "string"
}
}
}