Trimble Credentials

Form of a Trimble Credentials resource:

{
"clientId": "str",
"clientSecret": "str",
"accessToken": "str",
"refreshToken": "str"
}

All HTTP methods should be prepended by this service's endpoint:

https://api.withleaf.io/services/usermanagement/api

See below the REST resources and their endpoints available in this service.

Endpoints

DescriptionEndpoints
Get the Trimble credentialsGET /users/{leafUserId}/trimble-credentials
Create a Trimble credentialsPOST /users/{leafUserId}/trimble-credentials
Delete Trimble credentialsDELETE /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. If during background processing we detect that this credential is no longer valid, the value of the status will be changed.

Request examples

curl -X GET \
-H 'Authorization: Bearer YOUR_TOKEN' \
'https://api.withleaf.io/services/usermanagement/api/users/{leafUserId}/trimble-credentials'

Response

{
"id": "str",
"status": "str",
"createdTime": "yyyy-MM-dd'T'HH:mm:ss.SSSSSS'Z'",
"tokenMetadata": {"scopes": ["str"]},
"clientId": "str",
"clientSecret": "str",
"accessToken": "str",
"refreshToken": "str"
}

Create a Trimble credentials

 POST /users/{leafUserId}/trimble-credentials

Create a Trimble credentials for the Leaf User.

Request body

{
"clientId": "str",
"clientSecret": "str",
"refreshToken": "str"
}

Request examples

curl -X POST \
-H 'Authorization: Bearer YOUR_TOKEN' \
-d '{"clientId": "str","clientSecret": "str","refreshToken": "str"}'
'https://api.withleaf.io/services/usermanagement/api/users/{leafUserId}/trimble-credentials'

Response

A Trimble credentials with status.

{
"id": "str",
"status": "str",
"createdTime": "yyyy-MM-dd'T'HH:mm:ss.SSSSSS'Z'",
"tokenMetadata": {"scopes": ["str"]},
"clientKey": "str",
"clientSecret": "str",
"accessToken": "str",
"refreshToken": "str",
"clientEnvironment": "STAGE or PRODUCTION"
}

Delete Trimble credentials

 DELETE /users/{leafUserId}/trimble-credentials

Delete Leaf User's Trimble credentials.

Request examples

curl -X DELETE \
-H 'Authorization: Bearer YOUR_TOKEN' \
'https://api.withleaf.io/services/usermanagement/api/users/{leafUserId}/trimble-credentials'

Troubleshooting

With these endpoints, you can do some troubleshooting to see your credential's health.

Events

 GET /users/{leafUserId}/trimble-credentials/events

Get the logs of the provider credential based on the LeafUserId sent.

Request examples

curl -X GET \
-H 'Authorization: Bearer YOUR_TOKEN' \
'https://api.withleaf.io/services/usermanagement/api/users/{leafUserId}
/trimble-credentials/events'

Response

[
{
"body": "str",
"createdDate": "yyyy-MM-dd'T'HH:mm:ss.SSSSSS'Z'",
"headers": "str",
"id": "str",
"statusCode": "int"
}
]
warning

The logs are available only for 30 days and once the credential is deleted or disassociated with the Leaf User, the logs are no longer available.