TERMINAL 3 API
- Getting Started
- User
- User Credential
- Sub Client
- DID
SIGN IN WITH TERMINAL 3
- Getting Started
- Authorization
- User
- User Credential
NOTIFICATION
VERIFIABLE CREDENTIAL SDK
- Getting Started
- Issuer SDK
- Verifier SDK
Sub Client
List Sub Clients
This API allows a master client to list all sub-clients.
GET
/
v1
/
sub_client
curl --request GET \
--url https://staging.terminal3.io/v1/sub_client \
--header 'x-api-token: <x-api-token>'
{
"data": [
{
"client_id": 123,
"name": "<string>",
"domain": "<string>",
"timezone": "<string>",
"address_1": "<string>",
"address_2": "<string>",
"country": "<string>",
"province": "<string>",
"city": "<string>",
"subdomain": "<string>",
"from_email_address": "<string>",
"esp_token": "<string>",
"recaptcha_key": "<string>",
"recaptcha_threshold": 123,
"recaptcha_enabled": true,
"created_at": "<string>",
"privacy_link": "<string>"
}
],
"per_page": 123,
"current_page": 123,
"total_pages": 123
}
Response
200
application/json
Success
The response is of type object
.
curl --request GET \
--url https://staging.terminal3.io/v1/sub_client \
--header 'x-api-token: <x-api-token>'
{
"data": [
{
"client_id": 123,
"name": "<string>",
"domain": "<string>",
"timezone": "<string>",
"address_1": "<string>",
"address_2": "<string>",
"country": "<string>",
"province": "<string>",
"city": "<string>",
"subdomain": "<string>",
"from_email_address": "<string>",
"esp_token": "<string>",
"recaptcha_key": "<string>",
"recaptcha_threshold": 123,
"recaptcha_enabled": true,
"created_at": "<string>",
"privacy_link": "<string>"
}
],
"per_page": 123,
"current_page": 123,
"total_pages": 123
}
Assistant
Responses are generated using AI and may contain mistakes.