# Send global notification Sends a notification to a recipient identified by their mobile number. Used for OTPs, alerts, and global system notifications. The mobile number must follow E.164 format (e.g., +91XXXXXXXXXX). Endpoint: POST /send/global/notification Version: 1.0.1 Security: ApiKeyAuth ## Header parameters: - `Accept` (string) Optional. Indicates the response format. Defaults to application/json if not provided. Example: "application/json" ## Request fields (application/json): - `mobile` (string) The recipient's mobile number in E.164 format (e.g., +91XXXXXXXXXX). Example: "+9162839xxxxx" ## Response 200 fields (application/json): - `status` (string, required) Indicates a successful request. Enum: "success" - `message` (string, required) Summary of successful operation. - `timestamp` (string) Server timestamp in UTC. ## Response 400 fields (application/json): - `status` (string, required) Indicates an error response. Enum: "error" - `message` (string, required) Description of the error or validation failure. ## Response 500 fields (application/json): - `status` (string, required) Indicates an error response. Enum: "error" - `message` (string, required) Description of the error or validation failure.