Requests with x-www-form-urlencoded data
Table of Contents
This guide walks through how to format an Integration Center request in which x-www-form-urlencoded data needs to be sent in the request. This is commonly used for OAUTH authentication requests to generate an access token. But if needed for other request types, use the same approach.
Important Notes:
- Make sure you have added the header Content-Type: application/x-www-form-urlencoded.
- Make sure the payload body has XML selected and not JSON.
- You may need to URL Encode your variables if they have http special characters.
- e.g.
{{attribute | urlencode}}
- e.g.
Create your request in the Integration Center
- Create a new request.
- On the new page that opens, name the request.
- Specify the method and the url and if an Authentication is applicable.

- Add the content-type header.

- Add your payload and select XML. The payload will vary depending on the endpoint.

- Add your response mapping if applicable.