action svix_set_endpoint_transformation_api_v1_app_app_id_endpoint_endpoint { label: "Set Endpoint Transformation" description: "Set or unset the transformation code associated with this endpoint" provider: svix method: PATCH path: "/api/v1/app/{app_id}/endpoint/{endpoint_id}/transformation/" encoding: json input: { type: "object" properties: { app_id: { type: "string" description: "The application's ID or UID" } code: { type: "string" } enabled: { type: "boolean" } endpoint_id: { type: "string" description: "The endpoint's ID or UID" } "idempotency-key": { type: "string" description: "The request's idempotency key" } } required: ["app_id", "endpoint_id"] additionalProperties: false } output: { type: "object" additionalProperties: true } }