Tenant Management

How to request a new tenant

The tenant is created by the admin, for creating a new tenant please drop a mail at [email protected]

How to get an auth token for tenant API

curl -X 'POST' \
  'https://api.e-verify.openresumesolutions.com/api/v1/tenant/auth/token' \
  -H 'accept: application/json' \
  -H 'Content-Type: application/x-www-form-urlencoded' \
  -d 'username=<tenant_name>&password=<password>'

Get AUTH token

POST https://api.e-verify.openresumesolutions.com/api/v1/tenant/auth/token

Headers

Name
Type
Description

accept

String

Content-Type

String

Request Body

Name
Type
Description

username*

String

password*

String

How to change the tenant password

POST https://api.e-verify.openresumesolutions.com/api/v1/tenant/me/reset-password

Headers

Name
Type
Description

accept

String

Content-Type

String

Authorization*

String

Request Body

Name
Type
Description

new_password*

String

Generate API Secret Key

POST https://api.e-verify.openresumesolutions.com/api/v1/tenant/me/api-secret-key/new

Path Parameters

Name
Type
Description

code*

String

Human readable label to identify api key

expiry_on

String

datetime format for expiry key

Headers

Name
Type
Description

accept

String

Authorization*

String

How to validate the API key

GET https://api.e-verify.openresumesolutions.com/api/v1/to-test-api-key

Headers

Name
Type
Description

accept

String

api-secret-key*

String

How to revoke API Key

POST https://api.e-verify.openresumesolutions.com/api/v1/tenant/me/api-secret-key/revoke

Headers

Name
Type
Description

accept

String

Authorization*

String

Last updated