Reputation: 1
Endpoint - /a/ads-management/api/v0/institutions/{institutionId}/ads
We are trying to utilize Ads API in our product. Below is the example JSON given in the docs. https://jackhenry.dev/open-api-docs/admin-api/api-reference/v0/ads/management/#/ads/post_a_ads_management_api_v0_institutions__institutionId__ads
{
"title": "string",
"templateId": "string",
"active": true,
"values": [
{
"id": {
"blockName": "string",
"fieldName": "string"
},
"value": {
"value": "string"
}
}
]
}
Questions
Can you explain what is "values" array ? What should we pass in "id", "blockName", "fieldName", "value" that are being used inside values array.? Can you provide example values for all?
We went through the docs, but were not able to find explanation and examples for these fields.
Upvotes: 0
Views: 50
Reputation: 360
values
will be an array of adValue objects. We are working on updating our docs to provide the defined adValue values that you can use.
I will update this answer when the documentation updates are published.
Upvotes: 0