ClickwrapTerm definitions
Term Definition Get
This endpoint retrieves a specific term definition based on the unique term definition id (GUID) provided in the path.
Path Parameters
termDefinitionIdunknown
Value in
""Header Parameters
Authorizationstring
JWT token to authenticate the request on behalf of a specific Microsoft user or a backend service principal.
Default
"Bearer {{authToken}}"Value in
"Bearer {{authToken}}"X-Subscription-Keystring
Unique API key used to identify and authorize access to a specific environment
Default
"{{apiKey}}"Value in
"{{apiKey}}"Response Body
curl -X GET "https://demo.headless.mavenmule.com/clickwrap/termDefinitions//get" \ -H "Authorization: Bearer {{authToken}}" \ -H "X-Subscription-Key: {{apiKey}}"{
"result": {
"statusCode": 200,
"message": "OK",
"data": [
{
"termDefinition": {
"termDefinitionId": "{{guid}}",
"name": "{{termTitle}}",
"code": "{{termVersionCode}}",
"text": "{{termText}}"
}
}
]
},
"origin": "{{originEnvironment}}",
"dateTime": "{{responseTimestamp}}",
"userId": "{{userId}}"
}