Skip to main content
GET
/
v1
/
units
List units
curl --request GET \
  --url https://app.blinksale.test/api/v1/units \
  --header 'Authorization: Bearer <token>'
{
  "success": true,
  "message": "Resources retrieved successfully",
  "data": [
    {
      "id": "01jtbf0c9zaraqx3swthf88n5y",
      "organization_id": "01jtbf0c9zaraqx3swthf88n5y",
      "name": "Hour",
      "created_at": "2023-11-07T05:31:56Z",
      "updated_at": "2023-11-07T05:31:56Z"
    }
  ],
  "meta": {
    "current_page": 1,
    "from": 1,
    "last_page": 5,
    "links": [
      {
        "url": "<string>",
        "label": "<string>",
        "active": true
      }
    ],
    "path": "<string>",
    "per_page": 15,
    "to": 15,
    "total": 75
  }
}

Authorizations

Authorization
string
header
required

Access token obtained from the /v1/auth/login endpoint

Query Parameters

per_page
integer
default:15

Number of records per page

Response

Units retrieved successfully

success
boolean
required
Example:

true

message
string
required
Example:

"Resources retrieved successfully"

data
object[]
required
meta
object