### List Items API Source: https://github.com/tickernelz/accurate-openapi/blob/main/example.md Retrieves a list of items from the database using an HTTP GET request. Requires Authorization and X-Session-ID headers. Supports filtering and pagination. ```HTTP GET /item/list.do Host: public.accurate.accurate.id Authorization: Bearer e8446369-bd56-4731-acea-c0a9e0cc46fa X-Session-ID: 7ff842b6-53e2-4d7b-8038-09e3f8318f1b fields=id,name,no filter.itemType=INVENTORY ``` -------------------------------- ### Get Accurate Online Database List Source: https://github.com/tickernelz/accurate-openapi/blob/main/example.md Retrieves a list of databases accessible by a user. Requires an Authorization header with a Bearer token. The response contains a list of databases with their IDs and aliases. ```HTTP GET https://account.accurate.id/api/db-list.do Authorization: Bearer e8446369-bd56-4731-acea-c0a9e0cc46fa ``` ```JSON { "d": [ { "id": 1156, "alias": "PT Demo Example" }, { "id": 1253, "alias": "PT Contoh" } ], "s": true } ``` -------------------------------- ### Item Detail API Source: https://github.com/tickernelz/accurate-openapi/blob/main/example.md Retrieves detailed information for a specific item using its ID via an HTTP GET request. Requires Authorization and X-Session-ID headers. ```HTTP GET /item/detail.do Host: public.accurate.accurate.id Authorization: Bearer e8446369-bd56-4731-acea-c0a9e0cc46fa X-Session-ID: 7ff842b6-53e2-4d7b-8038-09e3f8318f1b id=1250 ``` -------------------------------- ### Get Database Session and Host Source: https://github.com/tickernelz/accurate-openapi/blob/main/example.md Obtains the session and host information required to access a specific Accurate Online database. This API call requires the database ID as a request parameter and an Authorization header. ```HTTP GET https://account.accurate.id/api/open-db.do Authorization: Bearer e8446369-bd56-4731-acea-c0a9e0cc46fa Request Parameter: id: 1156 ``` ```JSON { "d": [ "Proses Berhasil Dilakukan" ], "host": "https://public.accurate.id", "session": "7ff842b6-53e2-4d7b-8038-09e3f8318f1b", "s": true } ``` -------------------------------- ### Save New Item to Accurate Online Database Source: https://github.com/tickernelz/accurate-openapi/blob/main/example.md Saves a new item (e.g., inventory item) to the Accurate Online database. This uses an HTTP POST request to the /api/item/save.do endpoint, requiring Authorization and X-Session-ID headers, along with item details in the request body. ```HTTP POST https://public.accurate.id/accurate/api/item/save.do Authorization: Bearer e8446369-bd56-4731-acea-c0a9e0cc46fa X-Session-ID: 7ff842b6-53e2-4d7b-8038-09e3f8318f1b Request Body: name: Test Item itemType: INVENTORY ``` ```JSON { "r": { "id": 1250, "no": "100027", "name": "Test Item", "upcNo": null, "itemType": "INVENTORY", "notes": null, "detailOpenBalance": [], .... }, "s": true, "d": [ "Barang & Jasa \"Test Item\" berhasil disimpan" ] } ``` === COMPLETE CONTENT === This response contains all available snippets from this library. No additional content exists. Do not make further requests.