This document provides a list of available API endpoints.
Base URL: https://testapi.kelasotomesyen.com
Endpoint | Method | Headers | Body | Status Code | Example Response | Description |
---|---|---|---|---|---|---|
/login | POST |
None
|
{"username": "admin", "password": "uHuY12#$"}
|
200 OK
|
|
Login to generate a token. |
/items | GET |
Authorization: Bearer <token>
|
None
|
200 OK
|
|
Get a list of all items. |
/items | POST |
Authorization: Bearer <token>
|
{"name": "Item 1", "description": "Description", "quantity": 10}
|
201 Created
|
|
Create a new item. |
/items/<item_id> | GET |
Authorization: Bearer <token>
|
None
|
200 OK
|
|
Get details of a specific item by ID. |
/items/<item_id> | PUT |
Authorization: Bearer <token>
|
{"name": "Updated Item", "description": "Updated Description", "quantity": 15}
|
200 OK
|
|
Fully update an item by ID. |
/items/<item_id> | PATCH |
Authorization: Bearer <token>
|
Partial update, e.g., {"quantity": 20}
|
200 OK
|
|
Partially update attributes of an item. |
/items/<item_id> | DELETE |
Authorization: Bearer <token>
|
None
|
200 OK
|
|
Delete an item by ID. |
200 OK
- The request was successful201 Created
- A new resource was successfully created204 No Content
- The request was successful, but there's no content to send back400 Bad Request
- The request was invalid or cannot be served401 Unauthorized
- Authentication failed or user doesn't have permissions for the requested operation403 Forbidden
- Access to the requested resource is forbidden404 Not Found
- The requested resource could not be found500 Internal Server Error
- The server encountered an unexpected conditionNote: For authentication errors, you may receive a 401 Unauthorized status if no authentication token is provided or if the token is invalid. A 403 Forbidden status may be returned if the authenticated user doesn't have the necessary permissions for the requested operation.
For more information: https://instagram.com/idejongkok