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

Agent authentication

POST
/authentication/agent/signin
This is sign in endpoint for agent. The email and password are needed.

Request

Body Params application/json

Examples

Responses

🟢200OK
application/json
Body

Request Request Example
Shell
JavaScript
Java
Swift
curl --location --request POST '/authentication/agent/signin' \
--header 'Content-Type: application/json' \
--data-raw '{
    "email": "tinganjeff90@gmail.com",
    "password": "password"
}'
Response Response Example
{
    "status": "success",
    "message": "Sign in successful",
    "tokens": {
        "refresh": "eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.H...",
        "access": "eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.K...."
    }
}
Modified at 2025-06-03 20:31:19
Previous
Introduction
Next
OTP Request
Built with