Skip to content

Generate Token

Request

Enter your credentials below and click 'Send' to fetch your bearer token.

Bodyapplication/x-www-form-urlencodedrequired
grant_typestringrequired
Default:"password"
usernamestringrequired
Example:"username"
passwordstring, (password)required
client_idstringrequired
Example:"client_id"
client_secretstringrequired
Example:"client_secret"
curl -i -X POST \
  https://auth.pp.travelport.net/oauth/token \
  -H 'Content-Type: application/x-www-form-urlencoded' \
  -d grant_type=password \
  -d username=username \
  -d 'password=pa$$word' \
  -d client_id=client_id \
  -d client_secret=client_secret

Responses

Success!

Bodyapplication/json
access_tokenstring
Response
{ "access_token": "string" }