The various methods for Feed Settings are listed below:
This will Update brands configured for the account.
Parameters
Name | Data Type | Requirement | Parameter Type | Description |
---|---|---|---|---|
accountId | string | Mandatory | path | ID of the advertiser account created on the platform. |
Sample Request
xxxxxxxxxx
PUT http://demo.stub.api.jivox.com/v2/accounts/<accountId>/retail-feed-settings/brands
Request Body
xxxxxxxxxx
{
brandValues: ["Dove", "Aveeno"]
}
This will list brands configured for the account in the retail media app.
Parameters
Name | Data Type | Requirement | Parameter Type | Description |
---|---|---|---|---|
accountId | string | Mandatory | path | ID of the advertiser account created on the platform. |
Sample Request
xxxxxxxxxx
GET http://demo.stub.api.jivox.com/v2/accounts/<accountId>/retail-feed-settings/brands
Sample Response
xxxxxxxxxx
{
brandValues: ["Dove", "Aveeno"]
}
This will list all the brands available to be passed in the brand filter.
Parameters
Name | Data Type | Requirement | Parameter Type | Description |
---|---|---|---|---|
accountId | string | Mandatory | path | ID of the advertiser account created on the platform. |
|
Sample Request
xxxxxxxxxx
GET http://demo.stub.api.jivox.com/v2/accounts/:accountId/retail-feed-settings/list/brands?query=searchQuery&limit=10&offset=0
Sample Response
xxxxxxxxxx
{
values: ["Dove Soap", "Dove Conditioner", "Dove Shampoo"]
}