Trimble Credentials
Form of a Trimble Credentials resource:
{
"status": "str",
"userName": "str",
"password": "str",
"applicationName": "str",
"serviceIdentityId": "str"
}
Endpoints
Description | Endpoints |
---|---|
Get the Trimble credentials | GET /users/{leafUserId}/trimble-credentials |
Create a Trimble credentials | POST /users/{leafUserId}/trimble-credentials |
Delete Trimble credentials | DELETE /users/{leafUserId}/trimble-credentials |
Trimble Credentials Endpoints
Get the Trimble credentials
 GET /users/{leafUserId}/trimble-credentials
Get the Trimble credentials of the Leaf User based on its id
and returns a JSON with the credentials.
Request examples
- cURL
- Python
- JavaScript
curl -X GET \
-H 'Authorization: Bearer YOUR_TOKEN' \
'https://api.withleaf.io/services/usermanagement/api/users/{leafUserId}/trimble-credentials'
Response
A Trimble credentials resource as a JSON.
Create a Trimble credentials
 POST /users/{leafUserId}/trimble-credentials
Create a Trimble credentials for the Leaf User.
Request examples
A Trimble credentials.
{
"userName": "str",
"password": "str",
"applicationName": "str",
"serviceIdentityId": "str"
}
- cURL
- Python
- JavaScript
curl -X POST \
-H 'Authorization: Bearer YOUR_TOKEN' \
-d '{"userName": "str","password": "str","applicationName": "str","serviceIdentityId": "str"}'
'https://api.withleaf.io/services/usermanagement/api/users/{leafUserId}/trimble-credentials'
Response
A Trimble credentials with status.
Delete Trimble credentials
 DELETE /users/{leafUserId}/trimble-credentials
Delete a Leaf User's Trimble credentials.
Request examples
- cURL
- Python
- JavaScript
curl -X DELETE \
-H 'Authorization: Bearer YOUR_TOKEN' \
'https://api.withleaf.io/services/usermanagement/api/users/{leafUserId}/trimble-credentials'