Skip to main content
POST
/
v1beta
/
findall
/
runs
/
{findall_id}
/
extend
Extend FindAll Run
import requests

url = "https://api.parallel.ai/v1beta/findall/runs/{findall_id}/extend"

payload = { "match_limit": 123 }
headers = {
    "x-api-key": "<api-key>",
    "Content-Type": "application/json"
}

response = requests.post(url, json=payload, headers=headers)

print(response.json())
"<any>"

Authorizations

x-api-key
string
header
required

Headers

parallel-beta
string | null

Path Parameters

findall_id
string
required

Body

application/json

Input model for FindAll extend.

match_limit
integer
required

Total number of matches to find for this FindAll run, including all matches from previous runs. This value must be greater than or equal to the current match limit for the specified FindAll run.

Response

Successful Response

The response is of type any.