curl --location --request POST 'http://localhost:3000/api/pipelines' \
--header 'Content-Type: application/json' \
--data-raw '{
"name": "string",
"action": {
"actionType": "transform",
"actionConfig": {
"mapping": {
"property1": "string",
"property2": "string"
}
}
},
"subscriberUrls": [
"http://example.com"
]
}'