πŸ§‘β€πŸ€β€πŸ§‘Users

Creating a new user

Create a user for a lender organization

GET https://configure-abierta-test.herokuapp.com/user

Headers

Name
Type
Description

Authorization*

String

Bearer YOUR_API_KEY

Request Body

Name
Type
Description

firstname*

String

The user's first name

lastname*

String

The user's last name

email*

String

The user's email address

password*

String

The user's password

phone*

String

The user's phone numer with the format +234

gender*

String

The user's gender

{
    "status": "success",
    "message": "New Borrower Succesfully Created",
    "data": {
        "firstname": "Daniel",
        "lastname": "Osineye",
        "email": "isongjosiah+3@gmail.com",
        "phone": "+2348182791196",
        "gender": "Male",
        "reference": "LNNPVUjVigzfA",
        "is_active": true,
        "source": "api",
        "created_at": "2022-02-11T09:10:25.815412395+01:00",
        "updated_at": "2022-02-11T09:10:25.815412533+01:00"
    }
}

User actions

Checks if a user exists in a lender organization

GET https://configure-abierta-test.herokuapp.com/user/actions

Query Parameters

Name
Type
Description

email*

String

The user's email address

action*

String

The specified action e.g exists

Headers

Name
Type
Description

Authorization*

String

Bearer YOUR_API_KEY

Get Users

Fetch Lenders users with pagination

GET https://configure-abierta-test.herokuapp.comevolvecredit.io/api/v1/user

Query Parameters

Name
Type
Description

start

String

specify start creation date to fetch users from

end

String

specify end creation date to fetch user from

pages

Int

Specify page - useful for pagination

Headers

Name
Type
Description

Authorization*

String

Bearer YOUR_API_KEY

Last updated

Was this helpful?