-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcreateTargetConnection.curl
More file actions
23 lines (23 loc) · 917 Bytes
/
createTargetConnection.curl
File metadata and controls
23 lines (23 loc) · 917 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
curl --location --request POST 'https://platform.adobe.io/data/foundation/flowservice/targetConnections' \
--header 'Authorization: Bearer {{ACCESS_TOKEN}} \
--header 'x-api-key: {{API_KEY}}' \
--header 'x-gw-ims-org-id: {{IMS_ORG}}' \
--header 'x-sandbox-name: {{SANDBOX_NAME}}' \
--header 'Content-Type: application/json' \
--data-raw '{
"name": "Database target connection ORDERS",
"description": "Database target connection ORDERS",
"data": {
"schema": {
"id": "https://ns.adobe.com/sbs/schemas/f1c4e24b09983a08d6df8a41e80c459bef19cea6619ca0dc",
"version": "application/vnd.adobe.xed-full+json;version=1"
}
},
"params": {
"dataSetId": "61a0da0df54bd118da5c24ff"
},
"connectionSpec": {
"id": "c604ff05-7f1a-43c0-8e18-33bf874cb11c",
"version": "1.0"
}
}'