Files
codiki-hexagonal/rest-client-collection/Codiki/Category/Create a new category.bru
2024-03-15 17:39:04 +01:00

25 lines
315 B
Plaintext

meta {
name: Create a new category
type: http
seq: 1
}
post {
url: {{url}}/api/categories
body: json
auth: bearer
}
auth:bearer {
token: {{bearerToken}}
}
body:json {
{
"name": "New category with sub-category",
"subCategoryIds": [
"2d19d037-57a1-44a1-9a20-766b4e3628b6"
]
}
}