Skip to content

Assign a License

Before you can assign devices or members to a license, the license must first be Activated. After activation, a user or device needs to be assigned before it can be accessed.

API Call

POST {baseurl}/entitlements/activations/{activationTRN}/members

Headers

  • Accept: application/json
    (Note: This may be automatically added by your development tool. Postman and CURL add this header to all requests by default.)

  • Authorization: Bearer {bearer token}
    (Include Trimble Identity OAuth Bearer token for your application. For more information, refer to how to get access token.)

Body

The body of the request is based on the example below. It shows the minimum required request body. For additional parameters, refer to the API definition.

Example Request Body:

{
"type" : "USER",
"members" : [
"11110700177"
]
}