Tenants Batch Export - JSON Schema
{
"$schema": "http://json-schema.org/draft-06/schema#",
"type": "array",
"items": {
"$ref": "#/definitions"
},
"definitions": {
"properties": {
"uniqueId": {
"type": "string",
"format": "uuid"
},
"name": {
"type": "string"
},
"GLP_PCID": {
"type": "string",
"format": "uuid"
},
"clients": {
"type": "array",
"items": {
"$ref": "#/definitions/Clients"
}
}
},
"required": [
"GLP_PCID",
"clients",
"uniqueId",
"name"
],
},
"Clients": {
"properties": {
"uniqueId": {
"type": "string",
"format": "uuid"
},
"name": {
"type": "string"
}
},
"required": [
"name",
"uniqueId"
],
"title": "Clients"
}
}
Tenants Batch Export - JSON Response
[
{
"uniqueId": "2e5c9788-29b7-4b86-861c-cc682745c823",
"name": "Test Partner",
"GLP_PCID": "5e5c9788-29b7-4b86-861c-dd634745c823",
"clients": [
{
"uniqueId": "649c8df6-569e-4aab-8b1d-c132290b602c",
"name": "ITC Client"
},
{
"uniqueId": "749c8df6-569e-4aab-8b1d-c132290b602c",
"name": "ITC Client1"
},
{
"uniqueId": "849c8df6-569e-4aab-8b1d-c132290b602c",
"name": "ITC Client2"
}
]
}
]