SageCloud
  • API Documentation
  • Getting Started
  • Authorization
    • Authentication
    • Headers
  • AIRTIME / EPIN
    • Purchase Airtime
    • Purchase EPIN
  • DATA
    • Fetch Data Providers
    • Fetch data bundles
    • Purchase Data
    • Spectranet Pin Lookup
    • Spectranet Pin Purchase
    • Smile Bundle Lookup
    • Smile Customer Validation
    • Smile Bundle Purchase
    • Corporate Data Lookup
    • Purchase Corporate Data
    • SME Data Lookup
    • Purchase SME Data.
  • CABLE-TV
    • Fetch Providers
    • Validate Smartcard
    • Fetch Billers For Provider
    • Purchase
    • Purchase TV Add-Ons
    • Fetch TV Add-Ons
  • ELECTRICITY
    • Fetch Billers
    • Validate Meter
    • Purchase
  • BETTING
    • Fetch Billers
    • Validate Betting
    • Fund Betting
  • FUNDS TRANSFER
    • Fetch Banks
    • Verify Bank Details
    • Transfer Funds
  • Re-query
  • Error Response
  • KYC
    • Verify BVN
    • Verify NIN
  • Education
    • WAEC Lookup
    • WAEC Purchase
    • JAMB Pin Purchase
    • JAMB Profile Validation
    • JAMB Lookup
Powered by GitBook
On this page

Was this helpful?

  1. Authorization

Authentication

Merchant Authorization

POST https://sagecloud.ng/api/v2/merchant/authorization

This endpoint allows your authentication

Headers

Name
Type
Description

Accept

string

This should be: application/json

Content-Type

string

This should be: application/json

Request Body

Name
Type
Description

email

string

Your login email

password

string

Your login password

{
    "success": true,
    "data": {
        "business_name": "My business",
        "token": {
            "access_token": {a generated token will be here},
            "token_type": "Bearer",
            "expires_at": "2030-05-12 15:53:34"
        }
    }
}
{
    "success": false,
    "message": "These business credentials do not match our records. Please check and try again"
}

PreviousGetting StartedNextHeaders

Last updated 4 years ago

Was this helpful?