reach & frequency
Cancel a Reach & Frequency reservation
Releases a RESERVATION's locked price and inventory. Unreserved predictions expire on their own.
PlatformsMeta
AuthorizationBearer <token>
API key authentication - use your Zernio API key as a Bearer token
In: header
Path Parameters
predictionIdstring
Query Parameters
accountIdstring
adAccountIdstring
Response Body
application/json
import Zernio from '@zernio/node';const zernio = new Zernio({ apiKey: process.env.ZERNIO_API_KEY });const { data } = await zernio.reachandfrequency.cancelRfReservation({ path: { predictionId: 'prediction_abc123', }, query: { accountId: 'account_abc123', adAccountId: 'adaccount_abc123', },});console.log(data);Empty
Empty
{
"error": "Unauthorized"
}Empty
Read a Reach & Frequency prediction GET
Previous Page
Reserve a Reach & Frequency prediction POST
Locks the quoted price + inventory until the returned `expiresAt` and mints a NEW prediction id — pass that RESERVED id (not the original) as `rfPredictionId` on POST /v1/ads/create. Release an unused reservation via DELETE.