Authorizations
Path Parameters
Body
application/json · string[]
The body is of type string[].
Response
Successful Response
The response is of type any.
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)"<any>"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)"<any>"The body is of type string[].
Successful Response
The response is of type any.