Appearance
Partnerize
Affiliate and partner marketing platform for iGaming campaigns, conversions, and commissions.
| Detail | Value |
|---|---|
| Category | iGaming |
| Base URL | https://api.partnerize.com/v2 |
| Authentication | Bearer Token |
| Endpoints | 9 |
| Connector key | partnerize |
Using Partnerize in a workflow
- Go to Connections and click New Connection.
- Pick Partnerize from the marketplace.
- Enter your credentials (see Authentication above for what's expected).
- In a workflow, drop an API Call node and select this connection.
- Pick the operation you need from the Operation dropdown — the full list is below.
Available endpoints
| Endpoint | Summary |
|---|---|
GET /brand/campaigns | List campaigns |
GET /brand/campaigns/{campaignId}/partners | List partners |
POST /brand/campaigns/{campaignId}/partners | Add partner |
GET /brand/campaigns/{campaignId}/conversions | List conversions |
POST /v3/brand/campaigns/{campaignId}/conversions/bulk | Bulk validate conversions |
GET /brand/campaigns/{campaignId}/commissions | Partner commissions |
GET /brand/networks/{networkId}/partners | All partners in network |
GET /reporting/report_publisher/campaign/{campaignId} | Publisher report |
GET /reporting/report_timeseries/campaign/{campaignId} | Time series report |
Each endpoint is documented in full below. Use the outline on the right to jump to one.
GET /brand/campaigns
List campaigns
| Detail | Value |
|---|---|
| Operation ID | igaming.listCampaigns |
| Method | GET |
| Path | /brand/campaigns |
Parameters
No parameters.
Using this endpoint in a workflow
- Add an API Call node to your workflow.
- Pick your Partnerize connection from the Connection dropdown.
- In the Operation dropdown, select
igaming.listCampaigns. - Fill in the parameter fields that appear. Use
{{...}}to reference upstream values.
What it returns
The API Call node writes the response to the workflow context:
{
status: 200,
success: true,
data: { ...response body from the API... },
latencyMs: 142
}Reference response fields downstream as {{nodeId.data.path}}. The exact response shape is documented on the upstream Partnerize API reference.
GET /brand/campaigns/{campaignId}/partners
List partners
| Detail | Value |
|---|---|
| Operation ID | igaming.listPartners |
| Method | GET |
| Path | /brand/campaigns/{campaignId}/partners |
Parameters
| Name | Location | Type | Required |
|---|---|---|---|
campaignId | path | string | Yes |
Using this endpoint in a workflow
- Add an API Call node to your workflow.
- Pick your Partnerize connection from the Connection dropdown.
- In the Operation dropdown, select
igaming.listPartners. - Fill in the parameter fields that appear. Use
{{...}}to reference upstream values.
Required fields are marked — fill them or the call will fail at runtime.
What it returns
The API Call node writes the response to the workflow context:
{
status: 200,
success: true,
data: { ...response body from the API... },
latencyMs: 142
}Reference response fields downstream as {{nodeId.data.path}}. The exact response shape is documented on the upstream Partnerize API reference.
POST /brand/campaigns/{campaignId}/partners
Add partner
| Detail | Value |
|---|---|
| Operation ID | igaming.addPartner |
| Method | POST |
| Path | /brand/campaigns/{campaignId}/partners |
Parameters
| Name | Location | Type | Required |
|---|---|---|---|
campaignId | path | string | Yes |
Request Body
| Field | Type |
|---|---|
publisher_id | string |
Using this endpoint in a workflow
- Add an API Call node to your workflow.
- Pick your Partnerize connection from the Connection dropdown.
- In the Operation dropdown, select
igaming.addPartner. - Fill in the parameter fields that appear. Use
{{...}}to reference upstream values.
Required fields are marked — fill them or the call will fail at runtime.
What it returns
The API Call node writes the response to the workflow context:
{
status: 200,
success: true,
data: { ...response body from the API... },
latencyMs: 142
}Reference response fields downstream as {{nodeId.data.path}}. The exact response shape is documented on the upstream Partnerize API reference.
GET /brand/campaigns/{campaignId}/conversions
List conversions
| Detail | Value |
|---|---|
| Operation ID | igaming.listConversions |
| Method | GET |
| Path | /brand/campaigns/{campaignId}/conversions |
Parameters
| Name | Location | Type | Required |
|---|---|---|---|
campaignId | path | string | Yes |
Using this endpoint in a workflow
- Add an API Call node to your workflow.
- Pick your Partnerize connection from the Connection dropdown.
- In the Operation dropdown, select
igaming.listConversions. - Fill in the parameter fields that appear. Use
{{...}}to reference upstream values.
Required fields are marked — fill them or the call will fail at runtime.
What it returns
The API Call node writes the response to the workflow context:
{
status: 200,
success: true,
data: { ...response body from the API... },
latencyMs: 142
}Reference response fields downstream as {{nodeId.data.path}}. The exact response shape is documented on the upstream Partnerize API reference.
POST /v3/brand/campaigns/{campaignId}/conversions/bulk
Bulk validate conversions
| Detail | Value |
|---|---|
| Operation ID | igaming.bulkValidate |
| Method | POST |
| Path | /v3/brand/campaigns/{campaignId}/conversions/bulk |
Parameters
| Name | Location | Type | Required |
|---|---|---|---|
campaignId | path | string | Yes |
Request Body
| Field | Type |
|---|---|
conversions | array |
Using this endpoint in a workflow
- Add an API Call node to your workflow.
- Pick your Partnerize connection from the Connection dropdown.
- In the Operation dropdown, select
igaming.bulkValidate. - Fill in the parameter fields that appear. Use
{{...}}to reference upstream values.
Required fields are marked — fill them or the call will fail at runtime.
What it returns
The API Call node writes the response to the workflow context:
{
status: 200,
success: true,
data: { ...response body from the API... },
latencyMs: 142
}Reference response fields downstream as {{nodeId.data.path}}. The exact response shape is documented on the upstream Partnerize API reference.
GET /brand/campaigns/{campaignId}/commissions
Partner commissions
| Detail | Value |
|---|---|
| Operation ID | igaming.listCommissions |
| Method | GET |
| Path | /brand/campaigns/{campaignId}/commissions |
Parameters
| Name | Location | Type | Required |
|---|---|---|---|
campaignId | path | string | Yes |
Using this endpoint in a workflow
- Add an API Call node to your workflow.
- Pick your Partnerize connection from the Connection dropdown.
- In the Operation dropdown, select
igaming.listCommissions. - Fill in the parameter fields that appear. Use
{{...}}to reference upstream values.
Required fields are marked — fill them or the call will fail at runtime.
What it returns
The API Call node writes the response to the workflow context:
{
status: 200,
success: true,
data: { ...response body from the API... },
latencyMs: 142
}Reference response fields downstream as {{nodeId.data.path}}. The exact response shape is documented on the upstream Partnerize API reference.
GET /brand/networks/{networkId}/partners
All partners in network
| Detail | Value |
|---|---|
| Operation ID | igaming.listNetworkPartners |
| Method | GET |
| Path | /brand/networks/{networkId}/partners |
Parameters
| Name | Location | Type | Required |
|---|---|---|---|
networkId | path | string | Yes |
Using this endpoint in a workflow
- Add an API Call node to your workflow.
- Pick your Partnerize connection from the Connection dropdown.
- In the Operation dropdown, select
igaming.listNetworkPartners. - Fill in the parameter fields that appear. Use
{{...}}to reference upstream values.
Required fields are marked — fill them or the call will fail at runtime.
What it returns
The API Call node writes the response to the workflow context:
{
status: 200,
success: true,
data: { ...response body from the API... },
latencyMs: 142
}Reference response fields downstream as {{nodeId.data.path}}. The exact response shape is documented on the upstream Partnerize API reference.
GET /reporting/report_publisher/campaign/{campaignId}
Publisher report
| Detail | Value |
|---|---|
| Operation ID | igaming.publisherReport |
| Method | GET |
| Path | /reporting/report_publisher/campaign/{campaignId} |
Parameters
| Name | Location | Type | Required |
|---|---|---|---|
campaignId | path | string | Yes |
Using this endpoint in a workflow
- Add an API Call node to your workflow.
- Pick your Partnerize connection from the Connection dropdown.
- In the Operation dropdown, select
igaming.publisherReport. - Fill in the parameter fields that appear. Use
{{...}}to reference upstream values.
Required fields are marked — fill them or the call will fail at runtime.
What it returns
The API Call node writes the response to the workflow context:
{
status: 200,
success: true,
data: { ...response body from the API... },
latencyMs: 142
}Reference response fields downstream as {{nodeId.data.path}}. The exact response shape is documented on the upstream Partnerize API reference.
GET /reporting/report_timeseries/campaign/{campaignId}
Time series report
| Detail | Value |
|---|---|
| Operation ID | igaming.timeseriesReport |
| Method | GET |
| Path | /reporting/report_timeseries/campaign/{campaignId} |
Parameters
| Name | Location | Type | Required |
|---|---|---|---|
campaignId | path | string | Yes |
Using this endpoint in a workflow
- Add an API Call node to your workflow.
- Pick your Partnerize connection from the Connection dropdown.
- In the Operation dropdown, select
igaming.timeseriesReport. - Fill in the parameter fields that appear. Use
{{...}}to reference upstream values.
Required fields are marked — fill them or the call will fail at runtime.
What it returns
The API Call node writes the response to the workflow context:
{
status: 200,
success: true,
data: { ...response body from the API... },
latencyMs: 142
}Reference response fields downstream as {{nodeId.data.path}}. The exact response shape is documented on the upstream Partnerize API reference.