Body
-
name
string | null -
description
string | null -
level
integer(int32) Values are
0
,1
,2
, or3
.
Values are 0
, 1
, 2
, or 3
.
curl \
-X POST http://api.example.com/api/Skill/multiple \
-H "Authorization: $API_KEY" \
-H "Content-Type: application/json-patch+json"
curl \
-X POST http://api.example.com/api/Skill/multiple \
-H "Authorization: $API_KEY" \
-H "Content-Type: application/json" \
-d '[{"name":"string","description":"string","level":0}]'
curl \
-X POST http://api.example.com/api/Skill/multiple \
-H "Authorization: $API_KEY" \
-H "Content-Type: text/json"
curl \
-X POST http://api.example.com/api/Skill/multiple \
-H "Authorization: $API_KEY" \
-H "Content-Type: application/*+json"
[
{
"name": "string",
"description": "string",
"level": 0
}
]
[
{
"name": "string",
"description": "string",
"level": 0
}
]
[
{
"name": "string",
"description": "string",
"level": 0
}
]
[
{
"name": "string",
"description": "string",
"level": 0
}
]