Notice Ack
This API allows a user to acknowledge a specific notice by sending an acceptance or rejection along with their device MAC address. It updates the system with the user's response to the notice.
| Header | Type | Required | Description | Example/ENUM |
|---|
| Authorization | string | Yes | Bearer token for user authorization | {{access_token}} |
📦Request Body Schema
| Field | Type | Required | Description | Enum / Example |
|---|
| notice_id | string | Yes | Unique identifier of the notice | "20" |
| accept_or_reject_action | string | Yes | Action taken by the user | Enum: ["Accept", "Reject"] |
| client_mac_address | string | Yes | MAC address of the user's device | "00:1B:44:11:3A:B7" |
🟢Success Response - 200 Ok
| Field | Type | Description | Example |
|---|
| status | string | Status of the API call | "success" |
| code | string | Response code for the user request | "s-101" |
| message | string | Message confirming the notice acknowledgement update | "Status updated for notice ID 20" |