1. Supplier
POS Toko Kue
  • Physical Transfer
    • List Physical Transfer
      GET
    • Show
      GET
    • Create
      POST
    • Update Status Transfer
      POST
    • Delete
      DELETE
    • Update
      PUT
  • Supplier
    • Get All
      GET
    • Get By Id
      GET
    • Create
      POST
    • Update
      PUT
    • Delete
      DELETE
  • Cash Book
    • Get By ID
      GET
    • Get All
      GET
    • Create
      POST
    • Update
      POST
    • Delete
      DELETE
    • Get Widget
      GET
    • Update Balance
      POST
    • Cash Book sync
      POST
  • Return
    • Export
      • Return Export
    • CREATE
      POST
    • Get
      GET
    • Get by id
      GET
    • Return sync
      POST
  • Receipt
    • Export
      • Receipt Export
    • GET
      GET
    • GET By ID
      GET
    • Create
      POST
    • Receipt sync
      POST
  • Auth
    • Login
    • Forgot Password
    • New Password
    • Change Password
    • Verify Otp
    • Logout
    • Refresh Token
    • Profile
    • Edit Profile
  • Stock Opname
    • Approve Stock Opname
    • Get
    • Create
    • Get By ID
    • UPDATE
    • DELETE
    • StockOpname Sync
    • Export Stock Opname
  • Store
    • GET
    • Switch Store
    • Activation
    • Activate
    • New Otp
    • Show
    • Profile
    • Delete
    • Update
    • Destroy
  • Product
    • List product
    • Detail
    • Create
    • Update
    • Delete
    • Get Product Batch
    • Get Product Stock History
    • Get Expire soon product
    • Get Low Stock Product
    • [Dev only] Get Product Stock History
    • [Dev Only] Create dummy product batch
    • [Dev Only] Delete product that doesn't have detail
    • [DEV Only]Sync product stock
  • Role
    • List
  • Catalog
    • Material
      • Store
      • Destroy
    • List
    • Destroy
    • Show
    • Update
    • Store
  • Member
    • Export
    • List
    • Destroy
    • Show
    • Store
    • Update
  • Employee
    • List
    • Destroy
    • Show
    • Store
    • Update
  • Discount
    • List
    • Show
    • Store
    • Update
    • Delete
  • Store Payment
    • List
    • Store
    • Update
  • Store Additional Information
    • My Store Additional Information
    • Update
  • Package
    • List
    • Show
    • Store
    • Update
    • Destroy
  • Reference
    • Get All Province
    • Get All City
    • Get All District
    • Get All Village
    • Bank
  • Settings
    • Application
  • Transaction
    • Evidence
      • Store
    • Widget Transaction
    • Transaction sync
    • Create Transaction
    • Get Transaction
    • Detail Transaction
    • Delete
  • Report
    • Export
      • Export History Transaction
      • Export Sales Report
    • Consignment
      • Widget Consignment Load
      • Get Consignment Suppliers
      • Get Detail Consignment Supplier
      • Export Consignment Supplier
      • Suppliers-Pay
      • Get Widget Detail
    • Sales report
    • Sales item report
    • Most selling report
    • Cash flow report
    • Widget Dashboard
  • Customer Service
    • New Request
  • Stock Adjustment
    • Get All
    • Create
    • Get By ID
    • Delete
    • Update
  • Stock Reconciliation
    • GET
  • Category
    • Get
  • Send Payment Receipt
    POST
  • Change request
    POST
  • Change confirm
    POST
  1. Supplier

Get All

Developing
Develop Env
http://localhost:8000
Develop Env
http://localhost:8000
GET
/api/v1/suppliers

Request

Authorization
Provide your bearer token in the
Authorization
header when making requests to protected resources.
Example:
Authorization: Bearer ********************
Query Params

Header Params

Responses

🟢200Success
application/json
Body

Request Request Example
Shell
JavaScript
Java
Swift
curl --location --request GET 'http://localhost:8000/api/v1/suppliers?page=1&per_page=10&search=%bala%' \
--header 'Accept: application/json' \
--header 'Authorization: Bearer <token>'
Response Response Example
{
    "success": true,
    "message": "Berhasil mengambil data",
    "data": [
        {
            "id": 13,
            "code": "SUP12345",
            "name": "Supplier A",
            "phone": "628271239128",
            "address": "Jalan Bababakasi",
            "description": "Test",
            "province_code": "35",
            "city_code": "3518",
            "district_code": "351808",
            "created_at": "2025-09-23T04:52:05.000000Z",
            "created_by": null,
            "provinces": {
                "code": 35,
                "name": "JAWA TIMUR"
            },
            "cities": {
                "code": 3518,
                "name": "KABUPATEN NGANJUK"
            },
            "districts": {
                "code": 351808,
                "name": "KERTOSONO"
            }
        },
        {
            "id": 12,
            "code": null,
            "name": "Supplier A",
            "phone": "628271239128",
            "address": "Jalan Bababakasi",
            "description": null,
            "province_code": "35",
            "city_code": "3518",
            "district_code": "351808",
            "created_at": "2025-09-23T04:49:38.000000Z",
            "created_by": null,
            "provinces": {
                "code": 35,
                "name": "JAWA TIMUR"
            },
            "cities": {
                "code": 3518,
                "name": "KABUPATEN NGANJUK"
            },
            "districts": {
                "code": 351808,
                "name": "KERTOSONO"
            }
        },
        {
            "id": 11,
            "code": null,
            "name": "Supplier A",
            "phone": "628271239128",
            "address": "Jalan Bababakasi",
            "description": null,
            "province_code": "35",
            "city_code": "3518",
            "district_code": "351808",
            "created_at": "2025-09-23T04:47:40.000000Z",
            "created_by": null,
            "provinces": {
                "code": 35,
                "name": "JAWA TIMUR"
            },
            "cities": {
                "code": 3518,
                "name": "KABUPATEN NGANJUK"
            },
            "districts": {
                "code": 351808,
                "name": "KERTOSONO"
            }
        }
    ],
    "meta": {
        "current_page": 1,
        "last_page": 5,
        "per_page": 3,
        "total_data": 13
    }
}
Modified at 2025-12-22 08:36:42
Previous
Update
Next
Get By Id
Built with