POST
/
transformation
curl --request POST \
  --url https://api.vectorshift.ai/v1/transformation \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '{
  "name": "<string>",
  "description": "<string>",
  "function_name": "<string>",
  "function": "<string>",
  "input_schema": {},
  "output_schema": {}
}'
{
  "status": "success",
  "id": "<string>"
}

Authorizations

Authorization
string
header
required

Bearer token authentication using API key

Body

Response

200
application/json

Transformation created successfully

The response is of type object.