Chip Groups

Chip Groups

A Chip Group is a collection of chips.

Get Chip Groups

Retrieve a list of all chip groups associated with your team.

Request

GET /chip-groups

Headers

HeaderDescriptionRequired
x-iyk-api-keyAPI key for userYes

Example Request

curl --location 'https://api.iyk.app/chip-groups' \
--header 'x-iyk-api-key: <API_KEY>'

Response

The response is an array of objects, each representing a chip group.

Response Object Properties

FieldTypeDescription
idnumberThe unique identifier of the chip group.
namestringThe name of the chip group.
createdAtstringThe timestamp when the chip group was created.

Example Response

[
    {
        "id": 260,
        "name": "Test",
        "createdAt": "2024-01-31T16:24:24.103Z"
    },
    {
        "id": 234,
        "name": "test group bug",
        "createdAt": "2023-11-20T20:15:20.112Z"
    }
    ...
]