Ubupay Documentation
  1. Transactions
Ubupay Documentation
  • Overview
    • Introduction
    • Getting started
  • Agent API Documentation
    • Introduction
    • Authentication
      • Agent authentication
      • OTP Request
      • OTP Verification
      • Password reset
    • Profile management
      • Create agent business profile
      • Update agent business profile
      • Retrieve agent business profile
      • Agent profile
    • Transactions
      • Transfers list
        GET
      • Transactions status amount
        GET
      • Transactions status count
        GET
      • Update transaction status
        PATCH
  1. Transactions

Update transaction status

PATCH
/agent/transactions/{agent_send_id}/update
This endpoint allows the agent to change the status of a transaction to "successfully" done after the final client has been served.
Request Request Example
Shell
JavaScript
Java
Swift
curl --location --request PATCH '/agent/transactions//update' \
--header 'Content-Type: application/json' \
--data-raw '{
    "status": "SUCCESSFUL"
}'
Response Response Example
{}

Request

Authorization
Provide your bearer token in the
Authorization
header when making requests to protected resources.
Example:
Authorization: Bearer ********************
Path Params
agent_send_id
string 
required
Body Params application/json
status
string 
required
"SUCCESSFUL" for transactions completed successfully.
Examples

Responses

🟢200Success
application/json
Body
object {0}
Previous
Transactions status count
Built with