Skip to main content
POST
/
v1
/
categories:batch-get
Batch Get Categories
curl --request POST \
  --url https://api.lab.fieldnode.dev/v1/categories:batch-get \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "ids": [
    "<string>"
  ]
}
'
{
  "items": [
    {
      "id": "<string>",
      "name": "<string>",
      "description": "<string>",
      "parentId": "<string>"
    }
  ]
}

Documentation Index

Fetch the complete documentation index at: https://developer.fieldnode.com/llms.txt

Use this file to discover all available pages before exploring further.

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Body

application/json
ids
string[]
required

List of category ids to load.

Response

The request has succeeded.

items
object[]
required

List of items.