For the complete documentation index, see llms.txt. This page is also available as Markdown.

Partner Groups

List all partner groups

get

Returns a list of all partner groups associated with the specified campaign.

Authorizations
AuthorizationstringRequired
Path parameters
AccountSIDstringRequired

The unique identifier for the account.

CampaignIdintegerRequired

The ID of the campaign to retrieve partner groups from.

Responses
200

A list of partner group objects.

application/json
get/Advertisers/{AccountSID}/Campaigns/{CampaignId}/MediaPartnerGroups
200

A list of partner group objects.

Create a partner group

post

Creates a new private partner group for organizing partners.

Authorizations
AuthorizationstringRequired
Path parameters
AccountSIDstringRequired

The unique identifier for the account.

CampaignIdintegerRequired

The ID of the campaign to create the group in.

Body
NamestringRequired

The display name for the partner group.

Example: Acme Top Partners
MediaPartnersstringOptional

Comma-separated list of MediaPartnerId values to add.

Example: 2552842,2552843
Responses
200

The partner group was created successfully.

application/json
StatusstringOptional

Indicates whether the operation was successful.

Example: OK
Uristring · uri-referenceOptional

The unique reference to the affected partner group.

Example: /Advertisers/<AccountSID>/Campaigns/8882/MediaPartnerGroups/12345
post/Advertisers/{AccountSID}/Campaigns/{CampaignId}/MediaPartnerGroups
200

The partner group was created successfully.

Retrieve a partner group

get
Authorizations
AuthorizationstringRequired
Path parameters
AccountSIDstringRequired

The unique identifier for the account.

CampaignIdintegerRequired

The ID of the campaign the group belongs to.

PartnerGroupIdintegerRequired

The unique identifier for the partner group.

Responses
200

A single partner group object.

application/json
IdstringOptional

The unique identifier for the partner group.

Example: 99999
NamestringOptional

The partner group's name. Only visible to you and other account members, not visible to partners.

Example: Acme Top Partners
Uristring · uri-referenceOptional

The unique reference to this partner group in the impact.com API.

Example: /Advertisers/<AccountSID>/Campaigns/1000/MediaPartnerGroups/99999
get/Advertisers/{AccountSID}/Campaigns/{CampaignId}/MediaPartnerGroups/{PartnerGroupId}
200

A single partner group object.

Update a partner group

put

Update group metadata or modify membership by adding or removing partners.

Authorizations
AuthorizationstringRequired
Path parameters
AccountSIDstringRequired

The unique identifier for the account.

CampaignIdintegerRequired

The ID of the campaign the group belongs to.

PartnerGroupIdintegerRequired

The unique identifier for the partner group to update.

Body
NamestringOptional

New name for the partner group.

Example: Acme Top Partners
MediaPartnersAddstringOptional

Comma-separated list of partner IDs to add.

Example: 2552843
MediaPartnersRemovestringOptional

Comma-separated list of partner IDs to remove.

Example: 2552842
Responses
200

The partner group was updated successfully.

application/json
StatusstringOptional

Indicates whether the operation was successful.

Example: OK
Uristring · uri-referenceOptional

The unique reference to the affected partner group.

Example: /Advertisers/<AccountSID>/Campaigns/8882/MediaPartnerGroups/12345
put/Advertisers/{AccountSID}/Campaigns/{CampaignId}/MediaPartnerGroups/{PartnerGroupId}
200

The partner group was updated successfully.

Delete a partner group

delete
Authorizations
AuthorizationstringRequired
Path parameters
AccountSIDstringRequired

The unique identifier for the account.

CampaignIdintegerRequired

The ID of the campaign the group belongs to.

PartnerGroupIdintegerRequired

The unique identifier for the partner group to delete.

Responses
200

The partner group was deleted successfully.

application/json
StatusstringOptional

Indicates that the partner group was deleted.

Example: DELETED
delete/Advertisers/{AccountSID}/Campaigns/{CampaignId}/MediaPartnerGroups/{PartnerGroupId}
200

The partner group was deleted successfully.

Last updated