Skip to content

Commit

Permalink
Update docs/SkuServiceTypeAPI.md
Browse files Browse the repository at this point in the history
  • Loading branch information
gitauto-ai[bot] authored Dec 13, 2024
1 parent e849f24 commit ecf479e
Showing 1 changed file with 39 additions and 0 deletions.
39 changes: 39 additions & 0 deletions docs/SkuServiceTypeAPI.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,39 @@
# SKU Service Type API Documentation

Check warning

Code scanning / Remark-lint (reported by Codacy)

Warn when a line feed at the end of a file is missing. Warning documentation

[final-newline] Missing newline character at end of file

## Overview

The SKU Service Type API allows for the creation, updating, and deletion of SKU Service Types, providing flexibility and manageability for SKU behaviors.

Check warning

Code scanning / Markdownlint (reported by Codacy)

Expected: 80; Actual: 153 Warning documentation

Expected: 80; Actual: 153

## Endpoints

### Create SKU Service Type

**POST** `/api/SkuServiceType`

#### Request Body

Check warning

Code scanning / Markdownlint (reported by Codacy)

Expected: 1; Actual: 0; Below Warning documentation

Expected: 1; Actual: 0; Below
```json

Check warning

Code scanning / Markdownlint (reported by Codacy)

Fenced code blocks should be surrounded by blank lines Warning documentation

Fenced code blocks should be surrounded by blank lines
{
"name": "string",
"description": "string"
}
```

### Update SKU Service Type

**PUT** `/api/SkuServiceType/{id}`

#### Request Body

Check warning

Code scanning / Markdownlint (reported by Codacy)

Expected: 1; Actual: 0; Below Warning documentation

Expected: 1; Actual: 0; Below

Check warning

Code scanning / Markdownlint (reported by Codacy)

Multiple headings with the same content Warning documentation

Multiple headings with the same content
```json

Check warning

Code scanning / Markdownlint (reported by Codacy)

Fenced code blocks should be surrounded by blank lines Warning documentation

Fenced code blocks should be surrounded by blank lines
{
"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.

Check warning

Code scanning / Markdownlint (reported by Codacy)

Files should end with a single newline character Warning documentation

Files should end with a single newline character

Check warning

Code scanning / Markdownlint (reported by Codacy)

Expected: 80; Actual: 152 Warning documentation

Expected: 80; Actual: 152

0 comments on commit ecf479e

Please sign in to comment.