POST
/
api
/
v1
/
outbound
/
batches
/
{batch_id}
/
remove-requests
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>",
        "<value>",
    ])

    # Handle response
    print(res)
"<any>"

Authorizations

Syllable-API-Key
string
header
required

Path Parameters

batch_id
string
required

Body

application/json · string[]

The body is of type string[].

Response

200
application/json
Successful Response

The response is of type any.