Logo
2cloudnine Payroll API API Documentation

Auth

Number of APIs: 7


1. SOAP Login

POST {{url}}/services/Soap/u/{{version}}

Logs in to the login server and starts a client session.

Make sure to set the url, username, password and secretToken environment variables before sending this request. On success, the request will automatically collect your authentication token for later use.



2. JWT Bearer Token Flow

POST https://login.salesforce.com/services/oauth2/token

JWT Auth



3. Web Server Flow 1

GET {{url}}/services/oauth2/authorize?response_type=code&client_id={{clientId}}&redirect_uri={{redirectUrl}}&scope=full refresh_token



4. Refresh Token

POST {{url}}/services/oauth2/token



5. Revoke Token

POST {{url}}/services/oauth2/revoke



6. User Info

GET {{url}}/services/oauth2/userinfo



7. List Available REST API Versions

GET {{url}}/services/data/



ENDPOINTS