This repository has been archived on 2026-05-07. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
Codiki/rest-client-collection/Codiki/Category/Update an existing category.bru
T

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": []
}
}