To reply to an item inquiry, use the following URL along with the inquiry ID and additional POST data.
| Method | URL |
| POST | https://api.fairwarningsoftware.com/v1.1.1/inquiry/reply/[id] |
| Request |
| { "user_id": <user_id>, "message_copy": <message_copy> } |
| Field | Type | Description |
| user_id | int | The ID of the user submitting the inquiry reply. |
| message_copy | string | The reply the user is submitting. |
| Status | Response |
| 200 | { "success": <success> } |
| 401 | {"error":"The API keys provided are invalid."} |
| 403 | {"error":"API keys are missing."} |
| 500 | {"error": <custom error>} |
| Field | Type | Description |
| success | bool | Whether the request was successful or not. |