confirm_order
Verify and confirm the status of an order after a payment attempt using the Satim Payment Gateway Integration. Processes order ID and language preferences to ensure accurate transaction tracking and response.
Instructions
Confirm order status after payment attempt
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| language | No | Language for response messages | |
| orderId | Yes | Order ID returned from registration |
Input Schema (JSON Schema)
{
"properties": {
"language": {
"description": "Language for response messages",
"enum": [
"AR",
"FR",
"EN"
],
"type": "string"
},
"orderId": {
"description": "Order ID returned from registration",
"type": "string"
}
},
"required": [
"orderId"
],
"type": "object"
}