Paymob · Schema
Paymob Disbursement
PaymentsPayment GatewayFintechMENAMENAPEgyptSaudi ArabiaUAEPakistanOmanCard PaymentsMobile WalletsBNPLPayoutsSubscriptions
Properties
| Name | Type | Description |
|---|---|---|
| transaction_id | string | |
| issuer | string | |
| amount | number | |
| msisdn | string | |
| full_name | string | |
| bank_card_number | string | |
| bank_code | string | |
| bank_transaction_type | string | |
| reference | string | |
| callback_url | string | |
| status | string | |
| disbursement_status | string | |
| created_at | string |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "https://api-evangelist.github.io/paymob/json-schema/paymob-disbursement-schema.json",
"title": "Paymob Disbursement",
"type": "object",
"required": ["issuer", "amount"],
"properties": {
"transaction_id": {"type": "string"},
"issuer": {
"type": "string",
"enum": ["vodafone", "etisalat", "orange", "bank_wallet", "bank_card", "instant_bank"]
},
"amount": {"type": "number"},
"msisdn": {"type": "string"},
"full_name": {"type": "string"},
"bank_card_number": {"type": "string"},
"bank_code": {"type": "string"},
"bank_transaction_type": {
"type": "string",
"enum": ["salary", "credit_card", "prepaid_card", "cash_transfer"]
},
"reference": {"type": "string"},
"callback_url": {"type": "string", "format": "uri"},
"status": {
"type": "string",
"enum": ["pending", "successful", "failed"]
},
"disbursement_status": {"type": "string"},
"created_at": {"type": "string", "format": "date-time"}
}
}