Last updated

Create Client Application

A client application must be created first using an existing user within that tenant before moving forward.

Guide

  1. Prepare a POST request to Create new application endpoint.
  2. In Authorization, select Basic Auth.
  3. Enter a username and password for a user that is:
    • in that tenant
    • has user management privileges via the Customer Admin role

Contact your project44 representative if you do not have this information.

  1. In the body of the request, name your application. For example:
{
  "name": "Production TMS Integration"
}
  1. POST to create a new client application.
  2. A client id and client secret will be returned. For example:
{
  "name": "Production TMS Integration",
  "id": "string",
  "secret": "string"
}

Remember these values for generating a token. A client secret cannot be retrieved after initial post, a new one must be created if lost.

Notes for use

  • There is a max of 20 client applications per tenant.

Common HTTP Errors

401 – Please confirm your HTTP Basic Authentication credentials provided by the project44 Solutions Analyst or Architect assigned to your implementation.