Favicon

You are here: Home > API Reference > Organization > Send organization email

Send organization email

Send organization email

GET
/v1/organizations/:organizationId/support-email/:action
Copy to clipboard

Send organization email

Send organization email

Request

Add parameter in header authorization
Example: Authorization: Bearer <token>
organizationId string
required
Entity Id or Slug
Match pattern: ^(([a-fA-F0-9]{24})|([a-zA-Z0-9\\-]{3,}))$
action string
required
≤ 128 characters

Responses

200 Response application/json
status boolean optional
data object optional
status string optional
≤ 128 characters
{
    "status": true,
    "data": {
        "status": "string"
    }
}
400 Response application/json
status boolean optional
false
error object optional
code number optional
5010
message string optional
Billing platform error
{
    "status": false,
    "error": {
        "code": 5010,
        "message": "Billing platform error"
    }
}
401 Response application/json
status boolean optional
false
error object optional
code number optional
4001
message string optional
Unauthorized
{
    "status": false,
    "error": {
        "code": 4002,
        "message": "No auth token"
    }
}
404 Response application/json
status boolean optional
false
error object optional
code number optional
3001
message string optional
Entity not found
{
    "status": false,
    "error": {
        "code": 3001,
        "message": "Entity not found"
    }
}