From ce8c3accbb20089f13c770ef00cd9ee7cd8b03c8 Mon Sep 17 00:00:00 2001 From: samantha Date: Sat, 21 Mar 2026 15:45:46 +0000 Subject: [PATCH] Update API Reference --- API-Reference.md | 33 +++++++++++++++++++++++++++++++++ 1 file changed, 33 insertions(+) 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 + }, +] +```