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
accept
String
Content-Type
String
Request Body
username*
String
password*
String
How to change the tenant password
POST https://api.e-verify.openresumesolutions.com/api/v1/tenant/me/reset-password
Headers
accept
String
Content-Type
String
Authorization*
String
Request Body
new_password*
String
Generate API Secret Key
POST https://api.e-verify.openresumesolutions.com/api/v1/tenant/me/api-secret-key/new
Path Parameters
code*
String
Human readable label to identify api key
expiry_on
String
datetime format for expiry key
Headers
accept
String
Authorization*
String
How to validate the API key
GET https://api.e-verify.openresumesolutions.com/api/v1/to-test-api-key
Headers
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
accept
String
Authorization*
String
Last updated