# Getting PayPal access token
To get a PayPal access token you have to make a new request using an API client like Postman (opens new window).
- Set the method to
POST. - Set the URL to
https://api.sandbox.paypal.com/v1/oauth2/token. - Open the
Authorizationtab and:- Select
Basic Authtype. - Enter your PayPal Client ID into the
Usernamefield. - Enter your PayPal Client Secret into the
Passwordfield.
- Select
- Go to
Bodytab and selectx-www-form-urlencodedradio button. Then, add one entry with the key:grant_typeand value:client_credentials. - Click the
Sendbutton. - In the response, you can find your PayPal
access_token.