Files
codiki-hexagonal/rest-client-collection/Codiki/Category/Update an existing category.bru
2024-03-15 17:39:04 +01:00

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