account settings
Set IG ice breakers
Set ice breakers for an Instagram account. Max 4 ice breakers, question max 80 chars.
AuthorizationBearer <token>
API key authentication - use your Zernio API key as a Bearer token
In: header
Path Parameters
accountIdstring
ice_breakers
Items
items <= 4Response Body
application/json
import Zernio from '@zernio/node';const zernio = new Zernio({ apiKey: process.env.ZERNIO_API_KEY });const { data } = await zernio.accountsettings.setInstagramIceBreakers({ path: { accountId: 'account_abc123', }, body: { ice_breakers: [ { question: 'string', payload: 'string', }, ], },});console.log(data);Empty
Empty
{
"error": "Unauthorized"
}