-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Updated api-reference from documentation release
- Loading branch information
Auto Mation
committed
Dec 19, 2024
1 parent
1afc50a
commit 621eb8e
Showing
409 changed files
with
3,352 additions
and
998 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
2 changes: 1 addition & 1 deletion
2
api-specs/api/examples/ApprovalFlow/ApprovalFlowSetCustomFieldAction.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
{ | ||
"action": "setCustomField", | ||
"name": "ExampleStringTypeField", | ||
"name": "exampleStringField", | ||
"value": "TextString" | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -5,6 +5,6 @@ | |
"typeId": "type" | ||
}, | ||
"fields": { | ||
"exampleStringTypeField": "TextString" | ||
"exampleStringField": "TextString" | ||
} | ||
} |
5 changes: 5 additions & 0 deletions
5
api-specs/api/examples/ApprovalRule/ApprovalRuleSetCustomFieldAction.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
{ | ||
"action": "setCustomField", | ||
"name": "exampleStringField", | ||
"value": "TextString" | ||
} |
10 changes: 10 additions & 0 deletions
10
api-specs/api/examples/ApprovalRule/ApprovalRuleSetCustomTypeAction.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
{ | ||
"action": "setCustomType", | ||
"type": { | ||
"id": "{{type-id}}", | ||
"typeId": "type" | ||
}, | ||
"fields": { | ||
"exampleStringField": "TextString" | ||
} | ||
} |
2 changes: 1 addition & 1 deletion
2
api-specs/api/examples/BusinessUnit/BusinessUnitSetAddressCustomFieldAction.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
{ | ||
"action": "setAddressCustomField", | ||
"name": "ExampleStringTypeField", | ||
"name": "exampleStringField", | ||
"value": "TextString", | ||
"addressId": "{{address-id}}" | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
2 changes: 1 addition & 1 deletion
2
api-specs/api/examples/BusinessUnit/BusinessUnitSetCustomFieldAction.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
{ | ||
"action": "setCustomField", | ||
"name": "ExampleStringTypeField", | ||
"name": "exampleStringField", | ||
"value": "TextString" | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -5,6 +5,6 @@ | |
"typeId": "type" | ||
}, | ||
"fields": { | ||
"exampleStringTypeField": "TextString" | ||
"exampleStringField": "TextString" | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -6,6 +6,6 @@ | |
"typeId": "type" | ||
}, | ||
"fields": { | ||
"exampleStringTypeField": "TextString" | ||
"exampleStringField": "TextString" | ||
} | ||
} |
8 changes: 4 additions & 4 deletions
8
api-specs/api/examples/Cart/CartSetBillingAddressCustomFieldAction.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
{ | ||
"action": "setBillingAddressCustomField", | ||
"name": "ExampleStringTypeField", | ||
"value": "TextString" | ||
} | ||
"action": "setBillingAddressCustomField", | ||
"name": "exampleStringField", | ||
"value": "TextString" | ||
} |
16 changes: 8 additions & 8 deletions
16
api-specs/api/examples/Cart/CartSetBillingAddressCustomTypeAction.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,10 +1,10 @@ | ||
{ | ||
"action": "setBillingAddressCustomType", | ||
"type": { | ||
"id": "{{type-id}}", | ||
"typeId": "type" | ||
}, | ||
"fields": { | ||
"exampleStringTypeField": "TextString" | ||
} | ||
"action": "setBillingAddressCustomType", | ||
"type": { | ||
"id": "{{type-id}}", | ||
"typeId": "type" | ||
}, | ||
"fields": { | ||
"exampleStringField": "TextString" | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
{ | ||
"action": "setCustomField", | ||
"name": "ExampleStringTypeField", | ||
"name": "exampleStringField", | ||
"value": "TextString" | ||
} |
2 changes: 1 addition & 1 deletion
2
api-specs/api/examples/Cart/CartSetCustomLineItemCustomFieldAction.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
{ | ||
"action": "setCustomLineItemCustomField", | ||
"customLineItemId": "{{customLineItemId}}", | ||
"name": "ExampleStringTypeField", | ||
"name": "exampleStringField", | ||
"value": "TextString" | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -5,6 +5,6 @@ | |
"typeId": "type" | ||
}, | ||
"fields": { | ||
"exampleStringTypeField": "TextString" | ||
"exampleStringField": "TextString" | ||
} | ||
} |
10 changes: 5 additions & 5 deletions
10
api-specs/api/examples/Cart/CartSetItemShippingAddressCustomFieldAction.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
{ | ||
"action": "setItemShippingAddressCustomField", | ||
"addressKey": "{{address-key}}", | ||
"name": "ExampleStringTypeField", | ||
"value": "TextString" | ||
} | ||
"action": "setItemShippingAddressCustomField", | ||
"addressKey": "{{address-key}}", | ||
"name": "exampleStringField", | ||
"value": "TextString" | ||
} |
18 changes: 9 additions & 9 deletions
18
api-specs/api/examples/Cart/CartSetItemShippingAddressCustomTypeAction.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,11 +1,11 @@ | ||
{ | ||
"action": "setItemShippingAddressCustomType", | ||
"addressKey": "{{address-key}}", | ||
"type": { | ||
"id": "{{type-id}}", | ||
"typeId": "type" | ||
}, | ||
"fields": { | ||
"exampleStringTypeField": "TextString" | ||
} | ||
"action": "setItemShippingAddressCustomType", | ||
"addressKey": "{{address-key}}", | ||
"type": { | ||
"id": "{{type-id}}", | ||
"typeId": "type" | ||
}, | ||
"fields": { | ||
"exampleStringField": "TextString" | ||
} | ||
} |
2 changes: 1 addition & 1 deletion
2
api-specs/api/examples/Cart/CartSetLineItemCustomFieldAction.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
{ | ||
"action": "setLineItemCustomField", | ||
"lineItemId": "{{lineItemId}}", | ||
"name": "ExampleStringTypeField", | ||
"name": "exampleStringField", | ||
"value": "TextString" | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -6,6 +6,6 @@ | |
"typeId": "type" | ||
}, | ||
"fields": { | ||
"exampleStringTypeField": "TextString" | ||
"exampleStringField": "TextString" | ||
} | ||
} |
8 changes: 4 additions & 4 deletions
8
api-specs/api/examples/Cart/CartSetShippingAddressCustomFieldAction.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
{ | ||
"action": "setShippingAddressCustomField", | ||
"name": "ExampleStringTypeField", | ||
"value": "TextString" | ||
} | ||
"action": "setShippingAddressCustomField", | ||
"name": "exampleStringField", | ||
"value": "TextString" | ||
} |
16 changes: 8 additions & 8 deletions
16
api-specs/api/examples/Cart/CartSetShippingAddressCustomTypeAction.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,10 +1,10 @@ | ||
{ | ||
"action": "setShippingAddressCustomType", | ||
"type": { | ||
"id": "{{type-id}}", | ||
"typeId": "type" | ||
}, | ||
"fields": { | ||
"exampleStringTypeField": "TextString" | ||
} | ||
"action": "setShippingAddressCustomType", | ||
"type": { | ||
"id": "{{type-id}}", | ||
"typeId": "type" | ||
}, | ||
"fields": { | ||
"exampleStringField": "TextString" | ||
} | ||
} |
2 changes: 1 addition & 1 deletion
2
api-specs/api/examples/Cart/CartSetShippingCustomFieldAction.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
{ | ||
"action": "setShippingCustomField", | ||
"shippingKey": "shippingMethodKey1", | ||
"name": "ExampleStringTypeField", | ||
"name": "exampleStringField", | ||
"value": "TextString" | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -6,6 +6,6 @@ | |
"typeId": "type" | ||
}, | ||
"fields": { | ||
"exampleStringTypeField": "TextString" | ||
"exampleStringField": "TextString" | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -7,6 +7,7 @@ | |
"currencyCode": "EUR", | ||
"centAmount": 40099 | ||
} | ||
] | ||
], | ||
"applicationMode": "IndividualApplication" | ||
} | ||
} | ||
} |
2 changes: 1 addition & 1 deletion
2
api-specs/api/examples/CartDiscount/CartDiscountSetCustomFieldAction.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
{ | ||
"action": "setCustomField", | ||
"name": "ExampleStringTypeField", | ||
"name": "exampleStringField", | ||
"value": "TextString" | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -5,6 +5,6 @@ | |
"typeId": "type" | ||
}, | ||
"fields": { | ||
"exampleStringTypeField": "TextString" | ||
"exampleStringField": "TextString" | ||
} | ||
} |
2 changes: 1 addition & 1 deletion
2
api-specs/api/examples/Category/CategorySetAssetCustomFieldAction.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
{ | ||
"action": "setAssetCustomField", | ||
"assetId": "{{assetId}}", | ||
"name": "ExampleStringTypeField", | ||
"name": "exampleStringField", | ||
"value": "TextString" | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -6,6 +6,6 @@ | |
"typeId": "type" | ||
}, | ||
"fields": { | ||
"exampleStringTypeField": "TextString" | ||
"exampleStringField": "TextString" | ||
} | ||
} |
2 changes: 1 addition & 1 deletion
2
api-specs/api/examples/Category/CategorySetCustomFieldAction.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
{ | ||
"action": "setCustomField", | ||
"name": "ExampleStringTypeField", | ||
"name": "exampleStringField", | ||
"value": "TextString" | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -5,6 +5,6 @@ | |
"typeId": "type" | ||
}, | ||
"fields": { | ||
"exampleStringTypeField": "TextString" | ||
"exampleStringField": "TextString" | ||
} | ||
} |
8 changes: 4 additions & 4 deletions
8
api-specs/api/examples/Channel/ChannelSetAddressCustomFieldAction.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
{ | ||
"action": "setAddressCustomField", | ||
"name": "ExampleStringTypeField", | ||
"value": "TextString" | ||
} | ||
"action": "setAddressCustomField", | ||
"name": "exampleStringField", | ||
"value": "TextString" | ||
} |
16 changes: 8 additions & 8 deletions
16
api-specs/api/examples/Channel/ChannelSetAddressCustomTypeAction.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,10 +1,10 @@ | ||
{ | ||
"action": "setAddressCustomType", | ||
"type": { | ||
"id": "{{type-id}}", | ||
"typeId": "type" | ||
}, | ||
"fields": { | ||
"exampleStringTypeField": "TextString" | ||
} | ||
"action": "setAddressCustomType", | ||
"type": { | ||
"id": "{{type-id}}", | ||
"typeId": "type" | ||
}, | ||
"fields": { | ||
"exampleStringField": "TextString" | ||
} | ||
} |
2 changes: 1 addition & 1 deletion
2
api-specs/api/examples/Channel/ChannelSetCustomFieldAction.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
{ | ||
"action": "setCustomField", | ||
"name": "ExampleStringTypeField", | ||
"name": "exampleStringField", | ||
"value": "TextString" | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -5,6 +5,6 @@ | |
"typeId": "type" | ||
}, | ||
"fields": { | ||
"exampleStringTypeField": "TextString" | ||
"exampleStringField": "TextString" | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
{ | ||
"type": "Point", | ||
"coordinates": [13.412119019109015, 52.50103330534661] | ||
} |
4 changes: 4 additions & 0 deletions
4
api-specs/api/examples/CustomObjects/CustomObjectReference.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
{ | ||
"id": "4e2b758f-f259-4c14-808e-2beb126bc0f1", | ||
"typeId": "key-value-document" | ||
} |
10 changes: 5 additions & 5 deletions
10
api-specs/api/examples/Customer/CustomerSetAddressCustomFieldAction.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
{ | ||
"action": "setAddressCustomField", | ||
"name": "ExampleStringTypeField", | ||
"value": "TextString", | ||
"addressId": "{{address-id}}" | ||
} | ||
"action": "setAddressCustomField", | ||
"name": "exampleStringField", | ||
"value": "TextString", | ||
"addressId": "{{address-id}}" | ||
} |
Oops, something went wrong.