Skip to main content
Version: v3

Get conversation forms

GET 

/ad-publishing/facebook/conversation-forms

Retrieve Facebook conversation lead forms for a location. Without limit the response is a plain array. When limit is provided (max 100) the response is a paginated { conversationForms, paging } envelope; pass after (from paging.next) to fetch the next batch.

Request

Version stringrequired

API Version

Available optionsv3
locationId stringrequired

Location identifier

limit string

Page size for a paginated fetch (max 100). When set, the response is a { conversationForms, paging } envelope instead of a plain array.

after string

Opaque cursor for the next batch, taken from the previous response paging.next

application/json

A plain array of conversation forms (default), or a { conversationForms, paging } envelope when limit is provided. Sorted newest first in both cases.

Schema
    oneOf
  • Array [
  • idstringrequired

    Conversation form id

    namestringrequired

    Form name

    textstringrequired

    Opening message shown when the conversation starts

    locationIdstringrequired

    Owning location

    questionsobject[]required

    Prompt and canned-reply pairs

    createdAtstringrequired

    Creation time, ISO-8601

    updatedAtstringrequired

    Last modification time, ISO-8601

  • ]