Collection of all emails would be located at the following URL:
{{url}} / {{tenantName}} / {{instanceName}} / patients / {{patientId}} / emails
In our example it would be:
https://api.live.welkincloud.io/gh/sb-demo/patients/5da47c49-0c2b-4239-b438-7a826d407739/emails
Request to get drafts of an email for a patient. If a patient has a contact and you want to request drafts for them, you should specify the contact ID as the patient ID in the url request
Bearer token obtained from POST /{tenantName}/admin/api_clients/{clientName}. Valid for 60 minutes.
Your organization (tenant) name, e.g. acme-health
acme-healthYour environment name: live, sandbox, or a custom name
liveUUID of the patient record
true["NO_PRIORITY"]createdAt%2CdescPaginated list of email drafts
Standard paginated response wrapper.
Total number of matching records
Total number of pages
Current page number (zero-based)
Page size
Number of elements on the current page
Bad request — the request could not be understood or was missing required parameters.
Unauthorized — the Bearer token is missing, expired, or invalid.
Forbidden — the API client role does not have permission for this resource. Check the role and security policy in Admin.
Not found — the requested resource does not exist.
Too many requests — rate limit exceeded. Implement exponential backoff.
Internal server error.
GET /{tenantName}/{instanceName}/patients/{patientId}/email-drafts HTTP/1.1
Host: api.live.welkincloud.io
Authorization: Bearer YOUR_SECRET_TOKEN
Accept: */*
{
"content": [
{
"id": "123e4567-e89b-12d3-a456-426614174000",
"createdAt": "2026-01-01T00:00:00.000Z",
"date": "2026-01-01T00:00:00.000Z",
"subject": "text",
"body": "text",
"emailEditorJson": "text",
"scheduledAt": "2026-01-01T00:00:00.000Z",
"sender": "123e4567-e89b-12d3-a456-426614174000",
"receiver": "123e4567-e89b-12d3-a456-426614174000",
"patientEmail": "name@gmail.com",
"secure": false,
"attachments": [
{
"id": "123e4567-e89b-12d3-a456-426614174000",
"originalName": "text",
"size": 1,
"contentType": "text",
"storageKey": "text"
}
],
"attachmentsFromTemplate": [
{
"id": "123e4567-e89b-12d3-a456-426614174000",
"originalName": "text",
"size": 1,
"contentType": "text",
"storageKey": "text"
}
],
"bodyAttachments": [
{
"id": "123e4567-e89b-12d3-a456-426614174000",
"originalName": "text",
"size": 1,
"contentType": "text",
"storageKey": "text",
"url": "https://example.com",
"thumbnailUrl": "https://example.com"
}
],
"priority": "NO_PRIORITY",
"source": "USER",
"templateName": "text",
"bodyType": "PLAIN_TEXT",
"senderName": "text",
"receiverName": "text",
"status": "WAITING",
"starred": true
}
],
"pageable": {
"sort": {
"sorted": true,
"unsorted": true,
"empty": true
},
"pageSize": 1,
"pageNumber": 1,
"offset": 1,
"unpaged": true,
"paged": true
},
"totalElements": 1,
"totalPages": 1,
"last": true,
"first": true,
"number": 1,
"size": 1,
"numberOfElements": 1,
"empty": true,
"sort": {
"sorted": true,
"unsorted": true,
"empty": true
}
}Request to create an email draft for a patient. If a patient has a contact added and you want to create a draft for him/her, then the contact's id should be specified in the request url as the patient's id (and the contact's data should be specified as the recipient as well).
Bearer token obtained from POST /{tenantName}/admin/api_clients/{clientName}. Valid for 60 minutes.
Your organization (tenant) name, e.g. acme-health
acme-healthYour environment name: live, sandbox, or a custom name
liveUUID of the patient record
falseNO_PRIORITYPossible values: USERPossible values: PLAIN_TEXTPossible values: WAITINGPossible values: Email draft created
falseNO_PRIORITYPossible values: USERPossible values: PLAIN_TEXTPossible values: WAITINGPossible values: Bad request — the request could not be understood or was missing required parameters.
Unauthorized — the Bearer token is missing, expired, or invalid.
Forbidden — the API client role does not have permission for this resource. Check the role and security policy in Admin.
Not found — the requested resource does not exist.
Too many requests — rate limit exceeded. Implement exponential backoff.
Internal server error.
POST /{tenantName}/{instanceName}/patients/{patientId}/email-drafts HTTP/1.1
Host: api.live.welkincloud.io
Authorization: Bearer YOUR_SECRET_TOKEN
Content-Type: application/json
Accept: */*
Content-Length: 814
{
"date": "2026-01-01T00:00:00.000Z",
"subject": "text",
"body": "text",
"emailEditorJson": "text",
"scheduledAt": "2026-01-01T00:00:00.000Z",
"receiver": "123e4567-e89b-12d3-a456-426614174000",
"patientEmail": "name@gmail.com",
"secure": false,
"attachments": [
{
"id": "123e4567-e89b-12d3-a456-426614174000",
"originalName": "text",
"size": 1,
"contentType": "text",
"storageKey": "text"
}
],
"attachmentsFromTemplate": [
{
"id": "123e4567-e89b-12d3-a456-426614174000",
"originalName": "text",
"size": 1,
"contentType": "text",
"storageKey": "text"
}
],
"bodyAttachments": [
{
"id": "123e4567-e89b-12d3-a456-426614174000",
"originalName": "text",
"size": 1,
"contentType": "text",
"storageKey": "text",
"url": "https://example.com",
"thumbnailUrl": "https://example.com"
}
],
"priority": "NO_PRIORITY",
"source": "USER",
"templateName": "text",
"bodyType": "PLAIN_TEXT",
"starred": true
}{
"id": "123e4567-e89b-12d3-a456-426614174000",
"createdAt": "2026-01-01T00:00:00.000Z",
"date": "2026-01-01T00:00:00.000Z",
"subject": "text",
"body": "text",
"emailEditorJson": "text",
"scheduledAt": "2026-01-01T00:00:00.000Z",
"sender": "123e4567-e89b-12d3-a456-426614174000",
"receiver": "123e4567-e89b-12d3-a456-426614174000",
"patientEmail": "name@gmail.com",
"secure": false,
"attachments": [
{
"id": "123e4567-e89b-12d3-a456-426614174000",
"originalName": "text",
"size": 1,
"contentType": "text",
"storageKey": "text"
}
],
"attachmentsFromTemplate": [
{
"id": "123e4567-e89b-12d3-a456-426614174000",
"originalName": "text",
"size": 1,
"contentType": "text",
"storageKey": "text"
}
],
"bodyAttachments": [
{
"id": "123e4567-e89b-12d3-a456-426614174000",
"originalName": "text",
"size": 1,
"contentType": "text",
"storageKey": "text",
"url": "https://example.com",
"thumbnailUrl": "https://example.com"
}
],
"priority": "NO_PRIORITY",
"source": "USER",
"templateName": "text",
"bodyType": "PLAIN_TEXT",
"senderName": "text",
"receiverName": "text",
"status": "WAITING",
"starred": true
}Request to get one draft of an email for a patient. If a patient has a contact and you want to request draft for them, you should specify the contact ID as the patient ID in the url request
Bearer token obtained from POST /{tenantName}/admin/api_clients/{clientName}. Valid for 60 minutes.
Your organization (tenant) name, e.g. acme-health
acme-healthYour environment name: live, sandbox, or a custom name
liveUUID of the patient record
UUID of the resource
Email draft
falseNO_PRIORITYPossible values: USERPossible values: PLAIN_TEXTPossible values: WAITINGPossible values: Bad request — the request could not be understood or was missing required parameters.
Unauthorized — the Bearer token is missing, expired, or invalid.
Forbidden — the API client role does not have permission for this resource. Check the role and security policy in Admin.
Not found — the requested resource does not exist.
Too many requests — rate limit exceeded. Implement exponential backoff.
Internal server error.
GET /{tenantName}/{instanceName}/patients/{patientId}/email-drafts/{uuid} HTTP/1.1
Host: api.live.welkincloud.io
Authorization: Bearer YOUR_SECRET_TOKEN
Accept: */*
{
"id": "123e4567-e89b-12d3-a456-426614174000",
"createdAt": "2026-01-01T00:00:00.000Z",
"date": "2026-01-01T00:00:00.000Z",
"subject": "text",
"body": "text",
"emailEditorJson": "text",
"scheduledAt": "2026-01-01T00:00:00.000Z",
"sender": "123e4567-e89b-12d3-a456-426614174000",
"receiver": "123e4567-e89b-12d3-a456-426614174000",
"patientEmail": "name@gmail.com",
"secure": false,
"attachments": [
{
"id": "123e4567-e89b-12d3-a456-426614174000",
"originalName": "text",
"size": 1,
"contentType": "text",
"storageKey": "text"
}
],
"attachmentsFromTemplate": [
{
"id": "123e4567-e89b-12d3-a456-426614174000",
"originalName": "text",
"size": 1,
"contentType": "text",
"storageKey": "text"
}
],
"bodyAttachments": [
{
"id": "123e4567-e89b-12d3-a456-426614174000",
"originalName": "text",
"size": 1,
"contentType": "text",
"storageKey": "text",
"url": "https://example.com",
"thumbnailUrl": "https://example.com"
}
],
"priority": "NO_PRIORITY",
"source": "USER",
"templateName": "text",
"bodyType": "PLAIN_TEXT",
"senderName": "text",
"receiverName": "text",
"status": "WAITING",
"starred": true
}Bearer token obtained from POST /{tenantName}/admin/api_clients/{clientName}. Valid for 60 minutes.
Your organization (tenant) name, e.g. acme-health
acme-healthYour environment name: live, sandbox, or a custom name
liveUUID of the patient record
UUID of the resource
Email draft with attachments added
falseNO_PRIORITYPossible values: USERPossible values: PLAIN_TEXTPossible values: WAITINGPossible values: Success
Bad request — the request could not be understood or was missing required parameters.
Unauthorized — the Bearer token is missing, expired, or invalid.
Forbidden — the API client role does not have permission for this resource. Check the role and security policy in Admin.
Not found — the requested resource does not exist.
Too many requests — rate limit exceeded. Implement exponential backoff.
Internal server error.
POST /{tenantName}/{instanceName}/patients/{patientId}/email-drafts/{uuid} HTTP/1.1
Host: api.live.welkincloud.io
Authorization: Bearer YOUR_SECRET_TOKEN
Content-Type: multipart/form-data
Accept: */*
Content-Length: 33
{
"attachmentsAsFiles": [
"binary"
]
}{
"id": "123e4567-e89b-12d3-a456-426614174000",
"createdAt": "2026-01-01T00:00:00.000Z",
"date": "2026-01-01T00:00:00.000Z",
"subject": "text",
"body": "text",
"emailEditorJson": "text",
"scheduledAt": "2026-01-01T00:00:00.000Z",
"sender": "123e4567-e89b-12d3-a456-426614174000",
"receiver": "123e4567-e89b-12d3-a456-426614174000",
"patientEmail": "name@gmail.com",
"secure": false,
"attachments": [
{
"id": "123e4567-e89b-12d3-a456-426614174000",
"originalName": "text",
"size": 1,
"contentType": "text",
"storageKey": "text"
}
],
"attachmentsFromTemplate": [
{
"id": "123e4567-e89b-12d3-a456-426614174000",
"originalName": "text",
"size": 1,
"contentType": "text",
"storageKey": "text"
}
],
"bodyAttachments": [
{
"id": "123e4567-e89b-12d3-a456-426614174000",
"originalName": "text",
"size": 1,
"contentType": "text",
"storageKey": "text",
"url": "https://example.com",
"thumbnailUrl": "https://example.com"
}
],
"priority": "NO_PRIORITY",
"source": "USER",
"templateName": "text",
"bodyType": "PLAIN_TEXT",
"senderName": "text",
"receiverName": "text",
"status": "WAITING",
"starred": true
}Bearer token obtained from POST /{tenantName}/admin/api_clients/{clientName}. Valid for 60 minutes.
Your organization (tenant) name, e.g. acme-health
acme-healthYour environment name: live, sandbox, or a custom name
liveUUID of the patient record
UUID of the resource
Email draft deleted
No content
Bad request — the request could not be understood or was missing required parameters.
Unauthorized — the Bearer token is missing, expired, or invalid.
Forbidden — the API client role does not have permission for this resource. Check the role and security policy in Admin.
Not found — the requested resource does not exist.
Too many requests — rate limit exceeded. Implement exponential backoff.
Internal server error.
DELETE /{tenantName}/{instanceName}/patients/{patientId}/email-drafts/{uuid} HTTP/1.1
Host: api.live.welkincloud.io
Authorization: Bearer YOUR_SECRET_TOKEN
Accept: */*
No content
Bearer token obtained from POST /{tenantName}/admin/api_clients/{clientName}. Valid for 60 minutes.
Your organization (tenant) name, e.g. acme-health
acme-healthYour environment name: live, sandbox, or a custom name
liveUUID of the patient record
UUID of the resource
falseNO_PRIORITYPossible values: USERPossible values: PLAIN_TEXTPossible values: WAITINGPossible values: Updated email draft
falseNO_PRIORITYPossible values: USERPossible values: PLAIN_TEXTPossible values: WAITINGPossible values: Bad request — the request could not be understood or was missing required parameters.
Unauthorized — the Bearer token is missing, expired, or invalid.
Forbidden — the API client role does not have permission for this resource. Check the role and security policy in Admin.
Not found — the requested resource does not exist.
Too many requests — rate limit exceeded. Implement exponential backoff.
Internal server error.
PATCH /{tenantName}/{instanceName}/patients/{patientId}/email-drafts/{uuid} HTTP/1.1
Host: api.live.welkincloud.io
Authorization: Bearer YOUR_SECRET_TOKEN
Content-Type: application/json
Accept: */*
Content-Length: 814
{
"date": "2026-01-01T00:00:00.000Z",
"subject": "text",
"body": "text",
"emailEditorJson": "text",
"scheduledAt": "2026-01-01T00:00:00.000Z",
"receiver": "123e4567-e89b-12d3-a456-426614174000",
"patientEmail": "name@gmail.com",
"secure": false,
"attachments": [
{
"id": "123e4567-e89b-12d3-a456-426614174000",
"originalName": "text",
"size": 1,
"contentType": "text",
"storageKey": "text"
}
],
"attachmentsFromTemplate": [
{
"id": "123e4567-e89b-12d3-a456-426614174000",
"originalName": "text",
"size": 1,
"contentType": "text",
"storageKey": "text"
}
],
"bodyAttachments": [
{
"id": "123e4567-e89b-12d3-a456-426614174000",
"originalName": "text",
"size": 1,
"contentType": "text",
"storageKey": "text",
"url": "https://example.com",
"thumbnailUrl": "https://example.com"
}
],
"priority": "NO_PRIORITY",
"source": "USER",
"templateName": "text",
"bodyType": "PLAIN_TEXT",
"starred": true
}{
"id": "123e4567-e89b-12d3-a456-426614174000",
"createdAt": "2026-01-01T00:00:00.000Z",
"date": "2026-01-01T00:00:00.000Z",
"subject": "text",
"body": "text",
"emailEditorJson": "text",
"scheduledAt": "2026-01-01T00:00:00.000Z",
"sender": "123e4567-e89b-12d3-a456-426614174000",
"receiver": "123e4567-e89b-12d3-a456-426614174000",
"patientEmail": "name@gmail.com",
"secure": false,
"attachments": [
{
"id": "123e4567-e89b-12d3-a456-426614174000",
"originalName": "text",
"size": 1,
"contentType": "text",
"storageKey": "text"
}
],
"attachmentsFromTemplate": [
{
"id": "123e4567-e89b-12d3-a456-426614174000",
"originalName": "text",
"size": 1,
"contentType": "text",
"storageKey": "text"
}
],
"bodyAttachments": [
{
"id": "123e4567-e89b-12d3-a456-426614174000",
"originalName": "text",
"size": 1,
"contentType": "text",
"storageKey": "text",
"url": "https://example.com",
"thumbnailUrl": "https://example.com"
}
],
"priority": "NO_PRIORITY",
"source": "USER",
"templateName": "text",
"bodyType": "PLAIN_TEXT",
"senderName": "text",
"receiverName": "text",
"status": "WAITING",
"starred": true
}Following Query Parameters can be used to sort or find approporiately
We can use any combination of this parameters in single request: Example: {{url}}/{{tenantName}}/{{instanceName}}/patients/{{patientId}}/emails?status=DELIVERED,FAILED&email=some-email@email.com&starred=true
Bearer token obtained from POST /{tenantName}/admin/api_clients/{clientName}. Valid for 60 minutes.
Your organization (tenant) name, e.g. acme-health
acme-healthYour environment name: live, sandbox, or a custom name
liveUUID of the patient record
Sort field and direction, e.g. lastName,asc or createdAt,desc
When specified, search by receiver id
1971b659-5555-4146-af82-a780532e26cdWhen specified, search by direction (IN or OUT)
INWhen specified, page number
0Example: 0When specified, size per page
20Example: 20When specified, search by starred (boolean value) field (as an important email)
trueCADxD4xc1w36r9VVyNxQTSuws+Zrqo_oswUJK+3mD4cdesTBbZw@mail.gmail.comWhen specified, search by 'to' or 'from' email
2021-10-14T15:32:17.296Z2021-10-18T15:32:17.296ZWhen specified, will execute a search based on subject and body fields
When specified, search by sender id
When specified, search by 'from' email
When specified, search by 'to' email
When specified, search by sender name
When specified, search by receiver name
When specified, search by status [SCHEDULED, ACCEPTED, DELIVERED, REJECTED, FAILED, UNRECOGNISED]
Paginated list of emails
Standard paginated response wrapper.
Total number of matching records
Total number of pages
Current page number (zero-based)
Page size
Number of elements on the current page
Bad request — the request could not be understood or was missing required parameters.
Unauthorized — the Bearer token is missing, expired, or invalid.
Forbidden — the API client role does not have permission for this resource. Check the role and security policy in Admin.
Not found — the requested resource does not exist.
Too many requests — rate limit exceeded. Implement exponential backoff.
Internal server error.
GET /{tenantName}/{instanceName}/patients/{patientId}/emails HTTP/1.1
Host: api.live.welkincloud.io
Authorization: Bearer YOUR_SECRET_TOKEN
Accept: */*
{
"content": [
{
"id": "123e4567-e89b-12d3-a456-426614174000",
"createdAt": "2026-01-01T00:00:00.000Z",
"updatedAt": "2026-01-01T00:00:00.000Z",
"createdBy": "123e4567-e89b-12d3-a456-426614174000",
"updatedBy": "123e4567-e89b-12d3-a456-426614174000",
"createdByName": "text",
"updatedByName": "text",
"sendNow": true,
"sentAt": "2026-01-01T00:00:00.000Z",
"receivedAt": "2026-01-01T00:00:00.000Z",
"deletedAt": "2026-01-01T00:00:00.000Z",
"date": "2026-01-01T00:00:00.000Z",
"careTeam": "text",
"patientInfo": "text",
"sender": "123e4567-e89b-12d3-a456-426614174000",
"senderType": "CS_TOOL_CLIENT",
"senderName": "text",
"from": "text",
"receiver": "123e4567-e89b-12d3-a456-426614174000",
"receiverType": "CS_TOOL_CLIENT",
"receiverName": "text",
"to": "text",
"direction": "OUT",
"externalId": "text",
"starred": true,
"errorMessage": "text",
"assignedBy": "123e4567-e89b-12d3-a456-426614174000",
"assignedByName": "text",
"hasHistory": true,
"unrecognized": true,
"subject": "text",
"body": "text",
"emailEditorJson": "text",
"status": "SCHEDULED",
"secure": false,
"attachments": [
{
"id": "123e4567-e89b-12d3-a456-426614174000",
"originalName": "text",
"size": 1,
"contentType": "text",
"storageKey": "text"
}
],
"attachmentsFromTemplate": [
{
"id": "123e4567-e89b-12d3-a456-426614174000",
"originalName": "text",
"size": 1,
"contentType": "text",
"storageKey": "text"
}
],
"bodyAttachments": [
{
"id": "123e4567-e89b-12d3-a456-426614174000",
"originalName": "text",
"size": 1,
"contentType": "text",
"storageKey": "text",
"url": "https://example.com",
"thumbnailUrl": "https://example.com"
}
],
"messageType": "CARE_TEAM",
"bodyType": "PLAIN_TEXT",
"inReplyTo": "text",
"messageId": "text",
"skipEvent": true
}
],
"pageable": {
"sort": {
"sorted": true,
"unsorted": true,
"empty": true
},
"pageSize": 1,
"pageNumber": 1,
"offset": 1,
"unpaged": true,
"paged": true
},
"totalElements": 1,
"totalPages": 1,
"last": true,
"first": true,
"number": 1,
"size": 1,
"numberOfElements": 1,
"empty": true,
"sort": {
"sorted": true,
"unsorted": true,
"empty": true
}
}Getting an email by ID
Bearer token obtained from POST /{tenantName}/admin/api_clients/{clientName}. Valid for 60 minutes.
Your organization (tenant) name, e.g. acme-health
acme-healthYour environment name: live, sandbox, or a custom name
liveUUID of the patient record
UUID of the resource
Email record
falseCARE_TEAMPossible values: PLAIN_TEXTPossible values: Bad request — the request could not be understood or was missing required parameters.
Unauthorized — the Bearer token is missing, expired, or invalid.
Forbidden — the API client role does not have permission for this resource. Check the role and security policy in Admin.
Not found — the requested resource does not exist.
Too many requests — rate limit exceeded. Implement exponential backoff.
Internal server error.
GET /{tenantName}/{instanceName}/patients/{patientId}/emails/{uuid} HTTP/1.1
Host: api.live.welkincloud.io
Authorization: Bearer YOUR_SECRET_TOKEN
Accept: */*
{
"id": "123e4567-e89b-12d3-a456-426614174000",
"createdAt": "2026-01-01T00:00:00.000Z",
"updatedAt": "2026-01-01T00:00:00.000Z",
"createdBy": "123e4567-e89b-12d3-a456-426614174000",
"updatedBy": "123e4567-e89b-12d3-a456-426614174000",
"createdByName": "text",
"updatedByName": "text",
"sendNow": true,
"sentAt": "2026-01-01T00:00:00.000Z",
"receivedAt": "2026-01-01T00:00:00.000Z",
"deletedAt": "2026-01-01T00:00:00.000Z",
"date": "2026-01-01T00:00:00.000Z",
"careTeam": "text",
"patientInfo": "text",
"sender": "123e4567-e89b-12d3-a456-426614174000",
"senderType": "CS_TOOL_CLIENT",
"senderName": "text",
"from": "text",
"receiver": "123e4567-e89b-12d3-a456-426614174000",
"receiverType": "CS_TOOL_CLIENT",
"receiverName": "text",
"to": "text",
"direction": "OUT",
"externalId": "text",
"starred": true,
"errorMessage": "text",
"assignedBy": "123e4567-e89b-12d3-a456-426614174000",
"assignedByName": "text",
"hasHistory": true,
"unrecognized": true,
"subject": "text",
"body": "text",
"emailEditorJson": "text",
"status": "SCHEDULED",
"secure": false,
"attachments": [
{
"id": "123e4567-e89b-12d3-a456-426614174000",
"originalName": "text",
"size": 1,
"contentType": "text",
"storageKey": "text"
}
],
"attachmentsFromTemplate": [
{
"id": "123e4567-e89b-12d3-a456-426614174000",
"originalName": "text",
"size": 1,
"contentType": "text",
"storageKey": "text"
}
],
"bodyAttachments": [
{
"id": "123e4567-e89b-12d3-a456-426614174000",
"originalName": "text",
"size": 1,
"contentType": "text",
"storageKey": "text",
"url": "https://example.com",
"thumbnailUrl": "https://example.com"
}
],
"messageType": "CARE_TEAM",
"bodyType": "PLAIN_TEXT",
"inReplyTo": "text",
"messageId": "text",
"skipEvent": true
}Request to receive email attachment.
emailId - email ID
fileId - file id to be taken from the attachments block
Bearer token obtained from POST /{tenantName}/admin/api_clients/{clientName}. Valid for 60 minutes.
Your organization (tenant) name, e.g. acme-health
acme-healthYour environment name: live, sandbox, or a custom name
liveUUID of the patient record
emailId path parameter
UUID of the uploaded file
Binary attachment file.
No content
Bad request — the request could not be understood or was missing required parameters.
Unauthorized — the Bearer token is missing, expired, or invalid.
Forbidden — the API client role does not have permission for this resource. Check the role and security policy in Admin.
Not found — the requested resource does not exist.
Too many requests — rate limit exceeded. Implement exponential backoff.
Internal server error.
GET /{tenantName}/{instanceName}/patients/{patientId}/emails/{emailId}/attachments/{fileId} HTTP/1.1
Host: api.live.welkincloud.io
Authorization: Bearer YOUR_SECRET_TOKEN
Accept: */*
No content
Last updated
Was this helpful?