Setup Developer Account

If you've successfully activated Developer Mode from the previous section, then you're ready to create and set up your developer account and start using Eyowo as your Payment Service.

In this section, you will complete the following task:

  • Create a Developer's Account

  • Create an Application

  • Obtain application credentials for HTTP requests

  • Add valid Eyowo User's Wallet

Creating a Developer's Account

Create Developer

POST https://api.developer.eyowo.com/v1/auth/signup

Request Body

NameTypeDescription

email

string

<valid email address>

password

string

preferred password

{
    "success": true,
    "data": {
        "user": {
            "_id": "5eaef9cf51dffa03abd11649",
            "deleted": false,
            "lastLogin": "2020-05-03T17:05:19.150Z",
            "email": "developer@developer.com",
            "createdAt": "2020-05-03T17:05:19.151Z",
            "updatedAt": "2020-05-03T17:05:19.151Z",
            "__v": 0
        }
    }
}

Developer Login

POST https://api.developer.eyowo.com/v1/auth/login

Request Body

NameTypeDescription

email

string

<valid email address>

password

string

{
    "success": true,
    "data": {
        "user": {
            "deleted": false,
            "_id": "sssome",
            "lastLogin": "2020-05-03T17:05:57.754Z",
            "email": "developer@email.com",
            "createdAt": "2020-05-03T17:05:19.151Z",
            "updatedAt": "2020-05-03T17:05:57.755Z",
            "__v": 0
        },
        "token": "eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9"
    }
}

Congratulations you've successfully joined the cool kids 🎉 😎

NOTE: You'll be required to login.

Last updated