Quick Start

Request an IBEXHub user

To initiate the process, kindly send an email to [email protected] including the following necessary information:

  • Email Address (for the Admin)
  • Admin Name
  • Organization Name
  • We will provide a sandbox account

Rest assured, you will receive a follow-up email at the provided admin email address, guiding you through the process of setting your password. We appreciate your cooperation.


Guide to Making Requests

For almost all requests in IBEXHub you will need an AccessToken in the Authorization header. You can retrieve these by calling the Sign in route with your new password or using the RefreshToken (valid 7 days). (More details in the Auth API reference).

You also need to add the User Agent header depending on the type of HTTP client you're using to make requests. Check their docs here -> https://developer.mozilla.org/en-US/docs/Web/HTTP/Headers/User-Agent


Request

POST https://api-sandbox.poweredbyibex.io/auth/signin

Params

Body:

Nametype
emailstring
passwordstring
{
    "email": "",
    "password": ""
}

Responses

200: OkOK
{
    "accessToken": "",
    "refreshToken": "",
    "accessTokenExpiresAt": 1647365307,
    "refreshTokenExpiresAt": 1647365307,
}
400: Bad RequestSomething went wrong. Check the actual message for more detail.
{
    "error" : "", // error message
}