diff --git a/docs/SkuServiceTypeAPI.md b/docs/SkuServiceTypeAPI.md new file mode 100644 index 000000000..25cf2ffa2 --- /dev/null +++ b/docs/SkuServiceTypeAPI.md @@ -0,0 +1,39 @@ +# SKU Service Type API Documentation + +## Overview + +The SKU Service Type API allows for the creation, updating, and deletion of SKU Service Types, providing flexibility and manageability for SKU behaviors. + +## Endpoints + +### Create SKU Service Type + +**POST** `/api/SkuServiceType` + +#### Request Body +```json +{ + "name": "string", + "description": "string" +} +``` + +### Update SKU Service Type + +**PUT** `/api/SkuServiceType/{id}` + +#### Request Body +```json +{ + "name": "string", + "description": "string" +} +``` + +### Delete SKU Service Type + +**DELETE** `/api/SkuServiceType/{id}` + +## Usage + +Use the above endpoints to manage SKU Service Types effectively. Ensure to replace `{id}` with the actual SKU Service Type ID when updating or deleting. \ No newline at end of file