Was this helpful?
/configurations/{storeId}/flow-credentials
curl -L \ --url 'https://api.laminar.run/configurations/{storeId}/flow-credentials' \ --header 'Authorization: Bearer JWT'
{ "ANY_ADDITIONAL_PROPERTY": { "id": 1, "flowId": 1, "sourceAuthCredential": { "id": 1, "name": "text", "authType": "text" }, "destinationAuthCredential": { "id": 1, "name": "text", "authType": "text" } } }
curl -L \ --request POST \ --url 'https://api.laminar.run/configurations/{storeId}/flow-credentials' \ --header 'Authorization: Bearer JWT' \ --header 'Content-Type: application/json' \ --data '{ "flowId": 1, "sourceAuthCredentialId": 1, "destinationAuthCredentialId": 1 }'
{ "id": 1, "workspaceId": 1, "name": "text", "flowCredentialPairs": [ { "id": 1, "flowId": 1, "sourceAuthCredential": { "id": 1, "name": "text", "authType": "text" }, "destinationAuthCredential": { "id": 1, "name": "text", "authType": "text" } } ], "properties": [ { "id": 1, "key": "text", "value": "text" } ] }
/configurations/{storeId}/flow-credentials/{flowId}
curl -L \ --request DELETE \ --url 'https://api.laminar.run/configurations/{storeId}/flow-credentials/{flowId}' \ --header 'Authorization: Bearer JWT'
{}