Skip to main content
POST
/
api
/
v1
/
outbound
/
batches
/
{batch_id}
/
remove-requests
Python (SDK)
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.remove(batch_id="<id>", request_body=[
        "<value 1>",
        "<value 2>",
    ])

    # Handle response
    print(res)
{
  "detail": [
    {
      "loc": [
        "<string>"
      ],
      "msg": "<string>",
      "type": "<string>"
    }
  ]
}

Authorizations

Syllable-API-Key
string
header
required

Path Parameters

batch_id
string
required

Body

application/json

Response

Successful Response