# Send sms This endpoint allows you to send an SMS message to a specified eSIM subscription identified by its ICCID. The request requires an API key for authentication and includes parameters for the sender's name and the message content. Endpoint: POST /v3/subscriptions/{iccid}/send-sms Version: 1.0.0 Security: ApiKeyAuth ## Path parameters: - `iccid` (string, required) ## Request fields (application/json): - `from` (string, required) Example: "tellisim" - `message` (string, required) Example: "test message" ## Response 200 fields (application/json): - `error` (boolean, required) Indicates whether an error occurred (true if an error occurred) - `message` (string, required) A message providing additional information about the success response Example: "SMS sent successfully" ## Response 401 fields (application/json): - `error` (boolean, required) Indicates whether an error occurred during the request Example: true - `message` (string, required) Error message describing the unauthorized access Example: "Unauthorized: API key is missing" ## Response 502 fields (application/json): - `error` (boolean, required) Indicates whether an error occurred (true if an error occurred) Example: true - `message` (string, required) A message providing additional information about the failure response Example: "SMS Delivery Failed"