Passwordless Login - Token Exchange

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

This exchanges the auth code returned in the Authorize Request for an access token and refresh token. This follows the standard Auth Code flow/Webserver Code Flow pattern. The Code is the return form the Authorization call.

Request Body

[{"name"=>"code", "value"=>"<code>", "datatype"=>"string"}, {"name"=>"grant_type", "value"=>"authorization_code", "datatype"=>"string"}, {"name"=>"client_id", "value"=>"{{clientId}}", "datatype"=>"string"}, {"name"=>"redirect_uri", "value"=>"{{redirectUrl}}", "datatype"=>"string"}]