Admin Edit Payment Payee Request
Admin Edit Payment Payee Request.
Request
Request header:
POST https://api.ipaymy.com/v2/admin/edit_payment_payee
Host: api.ipaymy.com
Accept: application/json
Request body:
{
"payment_id": 0,
"purpose_id": 0,
"payees": [
{
"id": 0,
"bank_id": 0,
"comments": "",
"bank_raw_name": "",
"account_number": "",
"recipient_name": "",
"uid": ""
}
],
"supporting_documents": [""]
}
payment_id:
- Type: number
- Validate: required
purpose_id:
- Type: number
- Validate: required
Response
Response body:
{
"data": "",
"error": 0
}
Response codes:
- 200: Good stuff, and the response body should be easy to parse.
- 422: Typically malformed JSON, such as an integer in place of the required alphanumeric string, or a missing key. Check the response body for further details.