REST API
Get familiar with the Applivery API and explore the features
Invite a new App Employee to a given App
The Add App Employee request endpoint is intended to invite a new App Employee to an App. Invited user will receive an invitation link vía email.
Definition:
POST https://api.applivery.io/v1/integrations/employees
- Authentication: required
- Headers:
- Content-Type: application/json
- Authorization: bearer <Your_App_Token>
Param | Type | Description |
---|---|---|
email |
String |
Email address of the user to invite |
CURL Request Example
curl -X POST https://api.applivery.io/v1/integrations/employees -H 'Authorization: Bearer xyz...xyz' -H 'Content-Type: application/json' -d '{ "email": "employee@applivery.com" }'
Responses
{ "status": true, "data": { "id": "5d5d630aab0c0416902c4826", "from": "integrationApi", "type": "traditional", "email": "employee@applivery.com" } }
{ "status": true, "error": { "code": 2001, "message": "Token not valid" } }
{ "status": true, "error": { "code": 4001, "message": "Entity not found" } }