23 lines
283 B
Plaintext
23 lines
283 B
Plaintext
meta {
|
|
name: Update an existing category
|
|
type: http
|
|
seq: 2
|
|
}
|
|
|
|
put {
|
|
url: {{url}}/api/categories/{{categoryId}}
|
|
body: json
|
|
auth: bearer
|
|
}
|
|
|
|
auth:bearer {
|
|
token: {{bearerToken}}
|
|
}
|
|
|
|
body:json {
|
|
{
|
|
"name": "Another name of the category",
|
|
"subCategoryIds": []
|
|
}
|
|
}
|