Users
The first step in the credit creation process is to create a User object. This is the root object, representing a single borrower (person or business) applying for credit. Users are identified by a unique, random id.
Endpoints
Create a user
POST /v1/users
Retrieve a user
GET /v1/users/:uuid
Update a user
PUT /v1/users/:uuid
Delete a user
DELETE /v1/users/:uuid
List all users
GET /v1/users
Last updated