Custom API Call
Make a custom HTTP call to the Marketo API.
Options
Field | Definition | Type | Required |
---|---|---|---|
Request Type | Dropdown | TRUE | |
GET |
Retrieves data from a web server based on your parameters. This method requests a representation of the specified resource. If a request is successful, you receive a 200 (OK) response message with the requested content. |
||
POST | Sends data to a web server based on your parameters (for example, uploading a file). Multiple POST requests may result in a different outcome than a single POST, so you should be cautious about unintentionally sending multiple POST requests. If a request is successful, you receive a 200 (OK) response message. | ||
PUT | Sends data to be stored at a specific location on a web server based on your parameters (for example, uploading a file). The difference between PUT and POST requests is that PUT is idempotent. This means that for successful requests, the result of a single PUT request is the same as many identical PUT requests. If a request is successful, you receive a 200 (OK), 201 (Created), or 204 (No Content) response message. | ||
DELETE | Deletes the specified resource from the web server based on your parameters (if the resource exists). If a DELETE is successful, you receive a 200 (OK) response message. |
Input
Field | Definition | Type | Required |
---|---|---|---|
Relative URL | Specify the relative URL as /rest/v1/{insert_remaining_URL} . You can specify query parameters in the relative URL using “?”, or specify the query parameters as an object key pair in the Query input. |
String | FALSE |

The version of the api is handled by the connector in the Accept
header.
Field | Definition | Type | Required |
---|---|---|---|
Query | Specify any additional query parameters that should be included in object format (key value pairs). | Object | FALSE |
Headers | Specify any headers required in addition to authorization or content-type (these are already handled by this connector). | Object | FALSE |
Body | Specify a request body in JSON format. Only available for POST and PUT requests. |
Object | FALSE |
Output
Field | Definition | Type |
---|---|---|
Status Code | success or failure of your HTTP request. Here is a list of all status codes. | Number |
Headers | a detailed context for the status code, unrelated to the output body. Response headers are dependent on your selected HTTP request option. Note that not all headers are response headers. This will usually be a replica of the example below. | Object |
Body | data returned from your selected HTTP request (for example, the data from a GET request). |
Object |