Skip to main content
GET
/
api
/
v1
/
groups
/
{id}
/
machine-identities
cURL
curl --request GET \
  --url https://us.infisical.com/api/v1/groups/{id}/machine-identities
{
  "machineIdentities": [
    {
      "id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
      "name": "<string>",
      "isPartOfGroup": true,
      "joinedGroupAt": "2023-11-07T05:31:56Z"
    }
  ],
  "totalCount": 123
}

Path Parameters

id
string
required

The ID of the group to list identities for.

Query Parameters

offset
number
default:0

The offset to start from. If you enter 10, it will start from the 10th identity.

Required range: x >= 0
limit
number
default:10

The number of identities to return.

Required range: 1 <= x <= 100

The text string that machine identity name will be filtered by.

filter
enum<string>

Whether to filter the list of returned identities. 'assignedMachineIdentities' will only return identities assigned to the group, 'nonAssignedMachineIdentities' will only return identities not assigned to the group, undefined will return all identities in the organization.

Available options:
assignedMachineIdentities,
nonAssignedMachineIdentities

Response

Default Response

machineIdentities
object[]
required
totalCount
number
required