Single User Client
Authenticate by adding the Authorization: <API KEY>
header to your request.
curl https://api-test.simpl.rent/v2/account -H 'Authorization:<API KEY>'
Multiple Users Client
clientID
.The client system should assign a unique UserID to each user.
-
Users can grant access to their data to a client system by registering via the following link:
https://app.simpl.rent/r/<clientID>?ext=<UserID>
- production environment
https://test.simpl.rent/r/<clientID>?ext=<UserID>
- test environment -
Alternatively, users can obtain their
UserID
from the client system and copy-paste it into the dashboard settings section.
If a request contains the UserID
header, API operations will be performed on behalf of the user associated with it.
If the user has not granted access or if access has been revoked, the endpoints will respond with a 401 HTTP status code.
The UserID
should have at least four characters.
Authenticate by adding the Authorization: <API KEY>
and UserID: <User ID>
headers to your request.
curl https://api-test.simpl.rent/v2/account -H 'Authorization:<API KEY>' -H 'UserID: <User ID>'