DoctavianDoctavian
ClickwrapTerm definitions

Term Definition Get

GET
/termDefinitions/{termDefinitionId}/get

This endpoint retrieves a specific term definition based on the unique term definition id (GUID) provided in the path.

Authorization

X-Subscription-Key<token>

In: header

Path Parameters

termDefinitionId*

Header Parameters

Authorization*string

JWT token to authenticate the request on behalf of a specific Microsoft user or a backend service principal.

X-Subscription-Key*string

Unique API key used to identify and authorize access to a specific environment

Response Body

application/json

curl -X GET "https://example.com/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}}"}