Ubupay Documentation
  1. Profile management
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
        POST
      • Update agent business profile
        PATCH
      • Retrieve agent business profile
        GET
      • Agent profile
        GET
    • Transactions
      • Transfers list
      • Transactions status amount
      • Transactions status count
      • Update transaction status
  1. Profile management

Update agent business profile

PATCH
/agent/business/profile/update
This endpoint updates the agent business profile.
Request Request Example
Shell
JavaScript
Java
Swift
curl --location --request PATCH '/agent/business/profile/update' \
--header 'Content-Type: application/json' \
--data-raw '{
    "full_name": "ABC Bank",
    "trading_name": "ABC",
    "phone_number": "65000000",
    "country": "1c957f4a-c58f-4970-8e7e-5c89b4fb568e",
    "city": "Bujumbura",
    "address": "Bujumbura",
    "website": "https://abc.bank"
}'
Response Response Example
{}

Request

Authorization
Provide your bearer token in the
Authorization
header when making requests to protected resources.
Example:
Authorization: Bearer ********************
Body Params application/json
full_name
string 
optional
trading_name
string 
optional
phone_number
string 
optional
country
string 
optional
city
string 
optional
address
string 
optional
website
string 
optional
Examples

Responses

🟢200Success
application/json
Body
object {0}
Previous
Create agent business profile
Next
Retrieve agent business profile
Built with