Authorizations
Body
application/json
Payload to pass configuration and preview input data to the transformer.
Response
The transformed data from the transformer.
The output data from the transformer.
curl --request POST \
--url https://platform.versori.com/api/switchboard/v1alpha1/transformer/preview \
--header 'Authorization: <api-key>' \
--header 'Content-Type: application/json' \
--data '{
"input": "<string>",
"transform": "<string>",
"overrides": [
{
"actorid": "<string>",
"input": "<string>"
}
]
}'
{
"output": {}
}
Preview the output of a transformer. This endpoint is useful for testing a transformer before creating an integration.
curl --request POST \
--url https://platform.versori.com/api/switchboard/v1alpha1/transformer/preview \
--header 'Authorization: <api-key>' \
--header 'Content-Type: application/json' \
--data '{
"input": "<string>",
"transform": "<string>",
"overrides": [
{
"actorid": "<string>",
"input": "<string>"
}
]
}'
{
"output": {}
}
Payload to pass configuration and preview input data to the transformer.
The transformed data from the transformer.
The output data from the transformer.