Skip to main content
PATCH
/
ads
/
pixels
/
{id}
Typescript (SDK)
import { Crevio } from "@crevio/sdk";

const crevio = new Crevio({
  apiKey: process.env["CREVIO_API_KEY"] ?? "",
});

async function run() {
  const result = await crevio.ads.pixels.update({
    id: "<id>",
    requestBody: {},
  });

  console.log(result);
}

run();
{}

Authorizations

Authorization
string
header
required

API key in the format: Bearer {api_token}

Path Parameters

id
string
required

Pixel id.

Body

application/json

Fields to update.

account_id
string
name
string

Response

Updated pixel.

Updated pixel.