# Odeslat jednoduchou zprávu (POST požadavek) Endpoint: POST /simple/message Version: v2 Security: x-api-key ## Request fields (application/x-www-form-urlencoded): - `phone_number` (string, required) - `message` (string, required) - `sender` (string, required) ## Response 200 fields (application/json): - `request_id` (string) Jedinečný identifikátor požadavku. Example: "bc36f3d1-d284-463a-921b-a3560c154649" - `message_id` (string) Jedinečný identifikátor zprávy. Example: "bc36f3d1-d284-463a-921b-a3560c154649" - `accepted` (boolean) True, pokud byla zpráva přijata, false, pokud byla zamítnuta. Example: true ## Response 400 fields (application/json): - `request_id` (string) Jedinečný identifikátor požadavku. Example: "bc36f3d1-d284-463a-921b-a3560c154649" - `accepted` (boolean) True, pokud byla zpráva přijata, false, pokud byla zamítnuta. ## Response 415 fields (application/json): - `message` (string) Je podporován pouze Content-Type:application/x-www-form-urlencoded Example: "Nepodporovaný typ média"