Browse documentation

User

6 endpoints.

Paths are relative to the base URL for your environment. Unless marked otherwise, every request needs an Authorization: Bearer header.

GET/user/profile

Get Profile

Response fields

Asserted by the API’s own test suite.

user
POST/user/application-status-update

Notify Application Status Update

Request body

json
{
  "status": "approved",
  "organizationId": "{{organization_id}}"
}

Response fields

Asserted by the API’s own test suite.

success
POST/user/debtor-approved

Notify Debtor Approved

Request body

json
{
  "debtorId": "{{debtor_id}}",
  "organizationId": "{{organization_id}}"
}

Response fields

Asserted by the API’s own test suite.

success
POST/user/debtor-rejected

Notify Debtor Rejected

Request body

json
{
  "debtorId": "{{debtor_id}}",
  "organizationId": "{{organization_id}}"
}

Response fields

Asserted by the API’s own test suite.

success
POST/user/load-status-update

Notify Load Status Update

Request body

json
{
  "loadId": "{{load_id}}",
  "status": "funded"
}

Response fields

Asserted by the API’s own test suite.

success
POST/user/pod-verified

Notify POD Verified

Request body

json
{
  "loadId": "{{load_id}}"
}

Response fields

Asserted by the API’s own test suite.

success