{ "request": { "method": "POST", "url": "https://api.sabre.com/v2/auth/token", "headers": { "Content-Type": "application/x-www-form-urlencoded", "Authorization": "Basic {base64(client_id:client_secret)}" }, "body": "grant_type=client_credentials&client_id={client_id}&client_secret={client_secret}" }, "response": { "status": 200, "body": { "access_token": "T1RLAQLKkVBb5N9xFQNg...", "token_type": "Bearer", "expires_in": 604800 } } }