Skip to main content

BulkScheduleResponse

dryRunboolean
scheduledinteger

Number of posts successfully scheduled

failedinteger

Number of posts that failed

results object[]
  • Array [
  • rowinteger

    Row index (0-based)

    statusstring

    Possible values: [scheduled, failed]

    postIdstring<uuid>nullable
    errorstringnullable
  • ]
  • batchErrors object[]

    Batch-level errors that block scheduling (e.g. X daily limit exceeded, subscription limit)

  • Array [
  • typestring
    messagestring
  • ]
  • batchWarnings object[]

    Warnings that don't block scheduling

  • Array [
  • typestring
    messagestring
  • ]
  • summary object
    totalRowsinteger
    validRowsinteger
    errorRowsinteger
    totalDestinationsinteger
    platformBreakdown object
    property name*integer
    BulkScheduleResponse
    {
    "dryRun": true,
    "scheduled": 0,
    "failed": 0,
    "results": [
    {
    "row": 0,
    "status": "scheduled",
    "postId": "3fa85f64-5717-4562-b3fc-2c963f66afa6",
    "error": "string"
    }
    ],
    "batchErrors": [
    {
    "type": "string",
    "message": "string"
    }
    ],
    "batchWarnings": [
    {
    "type": "string",
    "message": "string"
    }
    ],
    "summary": {
    "totalRows": 0,
    "validRows": 0,
    "errorRows": 0,
    "totalDestinations": 0,
    "platformBreakdown": {}
    }
    }