/api/v1/me/support
POST
/api/v1/me/support
const url = 'https://example.com/api/v1/me/support';const options = { method: 'POST', headers: {'Content-Type': 'application/json'}, body: '{"message":"example"}'};
try { const response = await fetch(url, options); const data = await response.json(); console.log(data);} catch (error) { console.error(error);}curl --request POST \ --url https://example.com/api/v1/me/support \ --header 'Content-Type: application/json' \ --data '{ "message": "example" }'Request Body required
Section titled “Request Body required ” Media type application/json
object
message
required
string
Example generated
{ "message": "example"}Responses
Section titled “ Responses ”Message sent to the Tasuku team
Media type application/json
object
ok
required
boolean
Example
{ "ok": true}No valid session
Media type application/problem+json
object
type
required
string
title
required
string
status
required
number
code
required
string
Example generated
{ "type": "example", "title": "example", "status": 1, "code": "example"}Idempotency-Key reused with a different request
Media type application/problem+json
object
type
required
string
title
required
string
status
required
number
code
required
string
Example generated
{ "type": "example", "title": "example", "status": 1, "code": "example"}Empty or over-length message
Media type application/problem+json
object
type
required
string
title
required
string
status
required
number
code
required
string
Example generated
{ "type": "example", "title": "example", "status": 1, "code": "example"}Per-user rate limit exceeded
Media type application/problem+json
object
type
required
string
title
required
string
status
required
number
code
required
string
Example generated
{ "type": "example", "title": "example", "status": 1, "code": "example"}The team email failed to send
Media type application/problem+json
object
type
required
string
title
required
string
status
required
number
code
required
string
Example generated
{ "type": "example", "title": "example", "status": 1, "code": "example"}Support email is not configured
Media type application/problem+json
object
type
required
string
title
required
string
status
required
number
code
required
string
Example generated
{ "type": "example", "title": "example", "status": 1, "code": "example"}