OK
MANAGEMENT API (BETA)
/- Delete application sales area
Get application sales area
Update application sales area
List application sales areas
Insert application sales area
Delete application sales...
Norce Management API (v1)
Download OpenAPI description
Languages
Servers
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/application/salesarea/{id}
- cURL
- JS
- C#
curl -i -X GET \
'https://customer-slug.api-se.playground.norce.tech/commerce/management/1.0/api/application/salesarea/{id}'
Response
{ "Id": 0, "Code": "string", "Name": "string", "IsPrimary": true, "IsActive": true, "Changed": "string", "ChangedBy": "string" }
https://customer-slug.api-se.playground.norce.tech/commerce/management/1.0/api/application/salesarea/{id}
- cURL
- JS
- C#
curl -i -X PUT \
'https://customer-slug.api-se.playground.norce.tech/commerce/management/1.0/api/application/salesarea/{id}' \
-H 'Content-Type: application/json' \
-d '{
"Id": 0,
"Code": "string",
"Name": "string",
"IsPrimary": true,
"IsActive": true,
"Changed": "string",
"ChangedBy": "string"
}'
https://customer-slug.api-se.playground.norce.tech/commerce/management/1.0/api/application/salesarea/{id}
- cURL
- JS
- C#
curl -i -X DELETE \
'https://customer-slug.api-se.playground.norce.tech/commerce/management/1.0/api/application/salesarea/{id}'
https://customer-slug.api-se.playground.norce.tech/commerce/management/1.0/api/application/salesarea
- cURL
- JS
- C#
curl -i -X GET \
https://customer-slug.api-se.playground.norce.tech/commerce/management/1.0/api/application/salesarea
Response
[ { "Id": 0, "Code": "string", "Name": "string", "IsPrimary": true, "IsActive": true, "Changed": "string", "ChangedBy": "string" } ]
https://customer-slug.api-se.playground.norce.tech/commerce/management/1.0/api/application/salesarea
- cURL
- JS
- C#
curl -i -X POST \
https://customer-slug.api-se.playground.norce.tech/commerce/management/1.0/api/application/salesarea \
-H 'Content-Type: application/json' \
-d '{
"Id": 0,
"Code": "string",
"Name": "string",
"IsPrimary": true,
"IsActive": true,
"Changed": "string",
"ChangedBy": "string"
}'