manualMarkAsCompleted
🔗 Endpoint
🧾 Mutation Structure
mutation ManualMarkAsCompleted($apiKey: String!, $transactionId: String!) {
manualMarkAsCompleted(apiKey: $apiKey, transactionId: $transactionId) {
code
message
}
}
``---
### 📥 Parameters
Name | Type | Required | Description |
|----------------|--------|----------|--------------------------------------------------|
| `apiKey` | String | ✅ | Your issued API key |
| `transactionId`| String | ✅ | The ID of the transaction to manually complete |
---
### ✅ Successful Response
```json
{
"data": {
"manualMarkAsCompleted": {
"code": 200,
"message": "Transaction 10048 marked as completed manually."
}
}
}🚫 Error Codes
Code
Description
🧪 Code Examples
Python Example
JavaScript Example
Last updated