diff --git a/API-Reference.md b/API-Reference.md index f667086..fec06e2 100644 --- a/API-Reference.md +++ b/API-Reference.md @@ -78,6 +78,39 @@ Only one may be used, as no conflict is permitted in same request { "cost_center": "CC-1100"}, ] ``` + +#### `POST /department/activity` + +Setting activity by identifier. + +**Request bodys examples:** + +Only one may be used, as no conflict is permitted in same request + +```json +[ + { + "code": "ENG", + "active": false +}, +] +``` +```json +[ + { + "code": "Marketing", + "active": true +}, +] +``` +```json +[ + { + "cost_center": "CC-1100", + "active": true + }, +] +```