PUT
/
api
/
v1
/
outbound
/
batches
/
{batch_id}
import os
from syllable_sdk import SyllableSDK


with SyllableSDK(
    api_key_header=os.getenv("SYLLABLESDK_API_KEY_HEADER", ""),
) as ss_client:

    res = ss_client.outbound.batches.update(batch_id="<id>", communication_batch={
        "batch_id": "20250117.9",
        "campaign_id": 1,
        "expires_on": "2024-01-01T00:00:00Z",
        "count": 152,
        "created_at": "2024-01-01T00:00:00Z",
        "deleted_at": "2024-01-01T00:00:00Z",
        "deleted_reason": "User request",
        "last_worked_on": "2024-01-01T00:00:00Z",
        "last_updated_by": "user@email.com",
    })

    # Handle response
    print(res)
{
  "batch_id": "20250117.9",
  "campaign_id": 1,
  "expires_on": "2024-01-01T00:00:00Z",
  "status": "PENDING",
  "count": 152,
  "created_at": "2024-01-01T00:00:00Z",
  "deleted_at": "2024-01-01T00:00:00Z",
  "deleted_reason": "User request",
  "last_worked_on": "2024-01-01T00:00:00Z",
  "last_updated_by": "user@email.com"
}

Authorizations

Syllable-API-Key
string
header
required

Path Parameters

batch_id
string
required

Body

application/json
batch_id
string
required

Unique ID for conversation batch

Example:

"20250117.9"

campaign_id
integer
required

Unique ID for campaign

Example:

1

last_updated_by
string
required

Email of user who last updated campaign

Example:

"user@email.com"

expires_on
string | null

Timestamp of batch expiration

Example:

"2024-01-01T00:00:00Z"

status
enum<string>

Status of batch

Available options:
PENDING,
ACTIVE,
PAUSED,
IDLE,
CANCELED,
EXPIRED
count
integer | null

Number of requests in batch

Example:

152

created_at
string

Timestamp of batch creation

Example:

"2024-01-01T00:00:00Z"

deleted_at
string | null

Timestamp of batch deletion

Example:

"2024-01-01T00:00:00Z"

deleted_reason
string | null

Reason for batch deletion

Example:

"User request"

last_worked_on
string | null

Timestamp of last batch activity

Example:

"2024-01-01T00:00:00Z"

Response

200
application/json
Successful Response
batch_id
string
required

Unique ID for conversation batch

Example:

"20250117.9"

campaign_id
integer
required

Unique ID for campaign

Example:

1

last_updated_by
string
required

Email of user who last updated campaign

Example:

"user@email.com"

expires_on
string | null

Timestamp of batch expiration

Example:

"2024-01-01T00:00:00Z"

status
enum<string>

Status of batch

Available options:
PENDING,
ACTIVE,
PAUSED,
IDLE,
CANCELED,
EXPIRED
count
integer | null

Number of requests in batch

Example:

152

created_at
string

Timestamp of batch creation

Example:

"2024-01-01T00:00:00Z"

deleted_at
string | null

Timestamp of batch deletion

Example:

"2024-01-01T00:00:00Z"

deleted_reason
string | null

Reason for batch deletion

Example:

"User request"

last_worked_on
string | null

Timestamp of last batch activity

Example:

"2024-01-01T00:00:00Z"