Lucas Gonthier
10/31/2022, 6:26 PM"operations": [{"workspace_id": "f9d8801a-7ac7-40fc-8e9a-1dd497ca4d82", "operation_id": "007220dd-022f-461d-aa70-53a61e7f90fd", "name": "Normalization", "operator_configuration": {"operator_type": "normalization", "normalization": {"option": "basic"}}}]
user
11/01/2022, 11:55 AMLucas Gonthier
11/01/2022, 2:12 PM*POST* /v1/connections/create
from this documentation.user
11/01/2022, 5:01 PMIsmail Tigrek
06/16/2023, 9:06 PMLucas Gonthier
06/27/2023, 5:32 PMLouis Monier
07/11/2023, 9:28 AMLucas Gonthier
07/18/2023, 12:27 PMMatheus Barbosa
07/28/2023, 7:55 PMMatheus Barbosa
07/28/2023, 8:16 PM/api/v1/operations/create
endpoint to create an operation
{
"name": "Normalization",
"workspaceId": "your-workspace-id",
"operatorConfiguration": {
"operatorType": "normalization",
"normalization": {
"option": "basic"
}
}
}
Then when creating your connection in the /api/v1/connections/create
endpoint you just have to pass another property
"operationIds":["id-of-the-operation-you-just-created"]
@Lucas Gonthier @Louis Monier @Ismail Tigrek