Response Format
Success Response
{
"status": 200,
"message": "Description of the result",
"data": "<encrypted_payload>"
}Error Response
{
"status": 400,
"message": "Error description"
}Last updated
All successful responses follow this structure:
{
"status": 200,
"message": "Description of the result",
"data": "<encrypted_payload>"
}In production, the
datafield is encrypted using your SSH public key (Ed25519). You must decrypt it using your private key. In test environments,datais returned as plain JSON.
{
"status": 400,
"message": "Error description"
}Last updated