Skip to main content
POST
/
v1
/
functions
/
{function_name}
/
execute
Execute
curl --request POST \
  --url https://api.example.com/v1/functions/{function_name}/execute \
  --header 'Content-Type: application/json' \
  --header 'X-API-KEY: <api-key>' \
  --data '
{
  "linked_account_owner_id": "<string>",
  "function_input": {}
}
'
{
  "success": true,
  "data": "<unknown>",
  "error": "<string>"
}

Authorizations

X-API-KEY
string
header
required

API key for authentication

Path Parameters

function_name
string
required

Body

application/json
linked_account_owner_id
string
required

The owner id of the linked account. This is the id of the linked account owner in the linked account provider.

Maximum string length: 255
function_input
Function Input · object

The input parameters for the function.

Response

Successful Response

success
boolean
required
data
unknown
error
string | null