Created
March 14, 2016 14:19
-
-
Save danlopez/a2b378306c8b10e4c376 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* | |
POST /oauth/access-token | |
*/ | |
// Request Parameters | |
{ | |
"clientId": "asdf123", // String | |
"clientSecret": "asdf123", // String | |
"username": "AtiMachineUser", // String; Org Admin Username within ApprenNet | |
"password": "Password123" // String; Org Admin Password | |
} | |
// Response | |
{ | |
"accessToken": "asdf1234" // String. Expires in XX hours | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment