Generates a link you can use to invite a user to your OneLogin instance. The generated link leads to a page where the user can choose a password and then access your OneLogin instance.
Resource URL
Before calling this API, consider using its version /1 equivalent.
https://api.onelogin.com/api/v3/invites/get_invite_linkParameters
api_key required string | Set to the API key being used to make the call. |
required string | Set to the email address associated with the API key being used to make the call. |
Sample Response
- 200 OK
- 400 Bad Request
- 400 Bad Request
{
"status": {
"type": "success",
"message": "Success",
"error": false,
"code": 200
},
"data": [
"http://api.onelogin.com/password/reset?token=x111111x11xxx1x1x1111xxxxxx1xx11x1111x11"
]
}<error>
<message>API key is invalid or missing</message>
<code>invalid_or_missing_api_key</code>
</error>{
"status": {
"type": "bad request",
"message": "No User exists for input email",
"error": true,
"code": 400
}
}Response Elements
| Provides the invite link. Email the link to a user. The generated link leads to a page where the user can choose a password and then access the OneLogin application. |
Sample cURL Request
Be sure to replace placeholder values surrounded by { } with actual values.
curl -X POST -H "Content-Type: application/json" \
-d '{
"api_key":"{api_key}",
"email":"{email}"
}' \
https://api.onelogin.com/api/v3/invites/get_invite_linkPostman Collection
Have a Question?
Found a problem or a bug? Submit a support ticket.
Looking for walkthroughs or how-to guides? Check out our Knowledge Base.
Have a product idea or request? Share it in our Ideas Portal.