Logo Kelas Otomesyen

API Endpoints

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
{
  "token": "eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9..."
}
Login to generate a token.
/items GET Authorization: Bearer <token> None 200 OK
[
  {
    "id": 1,
    "name": "Item 1",
    "description": "Description 1",
    "quantity": 10
  },
  {
    "id": 2,
    "name": "Item 2",
    "description": "Description 2",
    "quantity": 15
  }
]
Get a list of all items.
/items POST Authorization: Bearer <token> {"name": "Item 1", "description": "Description", "quantity": 10} 201 Created
{
  "id": 3,
  "name": "Item 1",
  "description": "Description",
  "quantity": 10
}
Create a new item.
/items/<item_id> GET Authorization: Bearer <token> None 200 OK
{
  "id": 1,
  "name": "Item 1",
  "description": "Description 1",
  "quantity": 10
}
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
{
  "id": 1,
  "name": "Updated Item",
  "description": "Updated Description",
  "quantity": 15
}
Fully update an item by ID.
/items/<item_id> PATCH Authorization: Bearer <token> Partial update, e.g., {"quantity": 20} 200 OK
{
  "id": 1,
  "name": "Item 1",
  "description": "Description 1",
  "quantity": 20
}
Partially update attributes of an item.
/items/<item_id> DELETE Authorization: Bearer <token> None 200 OK
{
"message": "Item deleted"
}
Delete an item by ID.

Common Status Codes

Success Codes

  • 200 OK - The request was successful
  • 201 Created - A new resource was successfully created
  • 204 No Content - The request was successful, but there's no content to send back

Error Codes

  • 400 Bad Request - The request was invalid or cannot be served
  • 401 Unauthorized - Authentication failed or user doesn't have permissions for the requested operation
  • 403 Forbidden - Access to the requested resource is forbidden
  • 404 Not Found - The requested resource could not be found
  • 500 Internal Server Error - The server encountered an unexpected condition

Note: 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

Mau belajar software automation? Klik disini!