Skip to main content
POST
/
api
/
item
/
match
Searches for items matching a keyword across one or more containers, filtered by user permissions.
curl --request POST \
  --url https://{install}/api/item/match \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "keyword": "<string>",
  "container": [
    "<string>"
  ]
}
'
[
  {
    "itemId": "<string>",
    "itemName": "<string>",
    "itemSequence": "<string>",
    "itemDependencyKey": "<string>",
    "itemRestrictedTo": "<string>",
    "containerId": "<string>",
    "containerName": "<string>",
    "containerCode": "<string>"
  }
]

Documentation Index

Fetch the complete documentation index at: https://ekso.dev/llms.txt

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

Authorizations

Authorization
string
header
required

JWT Bearer token. Obtain via the OAuth 2.0 token endpoint.

Body

The search keyword and container IDs to search within.

keyword
string
container
string[]

Response

List of matching items.

itemId
string
itemName
string
itemSequence
string
itemDependencyKey
string
itemRestrictedTo
string
containerId
string
containerName
string
containerCode
string