The Norce Management API lets you manage configurations and metadata on a client.
The Norce Management API lets you manage configurations and metadata on a client.
https://customer-slug.api-se.playground.norce.tech/commerce/management/1.0/
https://customer-slug.api-se.playground.norce.tech/commerce/management/1.0/api/client/salesarea/{id}
curl -i -X GET \
'https://customer-slug.api-se.playground.norce.tech/commerce/management/1.0/api/client/salesarea/{id}' \
-H 'account-id: 0' \
-H 'application-id: 0'{ "Id": 0, "Name": "string", "Code": "string", "IsPrimary": true, "VatCodes": [ { … } ], "PrimaryVatCodeId": 0, "Changed": "string", "ChangedBy": "string" }
Updated client sales area data
The collection of VAT codes associated with this sales area for the client.
https://customer-slug.api-se.playground.norce.tech/commerce/management/1.0/api/client/salesarea/{id}
curl -i -X PUT \
'https://customer-slug.api-se.playground.norce.tech/commerce/management/1.0/api/client/salesarea/{id}' \
-H 'Content-Type: application/json' \
-H 'account-id: 0' \
-H 'application-id: 0' \
-d '{
"Id": 0,
"Name": "string",
"Code": "string",
"IsPrimary": true,
"VatCodes": [
{
"Id": 0,
"Name": "string",
"Value": 0
}
],
"PrimaryVatCodeId": 0,
"Changed": "string",
"ChangedBy": "string"
}'https://customer-slug.api-se.playground.norce.tech/commerce/management/1.0/api/client/salesarea
curl -i -X GET \
https://customer-slug.api-se.playground.norce.tech/commerce/management/1.0/api/client/salesarea \
-H 'account-id: 0' \
-H 'application-id: 0'[ { "Id": 0, "Name": "string", "Code": "string", "IsPrimary": true, "VatCodes": [ … ], "PrimaryVatCodeId": 0, "Changed": "string", "ChangedBy": "string" } ]
Client sales area to add
The collection of VAT codes associated with this sales area for the client.
https://customer-slug.api-se.playground.norce.tech/commerce/management/1.0/api/client/salesarea
curl -i -X POST \
https://customer-slug.api-se.playground.norce.tech/commerce/management/1.0/api/client/salesarea \
-H 'Content-Type: application/json' \
-H 'account-id: 0' \
-H 'application-id: 0' \
-d '{
"Id": 0,
"Name": "string",
"Code": "string",
"IsPrimary": true,
"VatCodes": [
{
"Id": 0,
"Name": "string",
"Value": 0
}
],
"PrimaryVatCodeId": 0,
"Changed": "string",
"ChangedBy": "string"
}'