Authentication

Merchant Authorization

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

This endpoint allows your authentication

Headers

NameTypeDescription

Accept

string

This should be: application/json

Content-Type

string

This should be: application/json

Request Body

NameTypeDescription

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"
        }
    }
}

Last updated