Public
Documentation Settings

Codefi Token API v1.0

THIS IS A POSTMAN COLLECTION

==> PLEASE CLICK ON THE ORANGE BUTTON AT TOP RIGHT TO DOWNLOAD IT <==


Tutorials

This quick video tutorials present how to go through the "Quick start" section of this API:


API responses

The following convention has been adopted for API responses success codes:

  • 200 - OK: Standard response for successful HTTP requests.
  • 201 - Created: The request has been fulfilled, resulting in the creation of a new resource.
  • 202 - Accepted: The request has been accepted for processing, but the processing has not been completed. The request might or might not be eventually acted upon, and may be disallowed when processing occurs. [This success code is returned when a transaction has been sent on a blockchain network]

Quick Start

1.Authentication

POSTAs a user1, create an access token

https://codefi.eu.auth0.com/oauth/token
HEADERS
Content-Type

application/json

Bodyraw
{
    "grant_type": "password",
    "audience": "https://api.codefi.network",
    "client_id": "EFMGjgMSzS1LvhDwgdfdwoUaXPgel7o8",
    "client_secret": "",
    "scope": "openid profile email",
    "username": "userWithTenantId1EntityId1@example.com",
    "password": ""
}
Loading