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-groupsHeaders
| Header | Description | Required | 
|---|---|---|
| x-iyk-api-key | API key for user | Yes | 
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
| Field | Type | Description | 
|---|---|---|
| id | number | The unique identifier of the chip group. | 
| name | string | The name of the chip group. | 
| createdAt | string | The 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"
    }
    ...
]