Store Participants

Inspect participants assigned to an instance store.

Store Participants object

Attributes

object

String

String representing the object's type

id

String

store_id

String

permissions

Array

actor

Object

created_at

Date
{
"object": "store.participant",
"permissions": [
"content_read",
"content_read"
],
"actor": {
"type": "organization_actor",
"organization_actor": {
"object": "organization.actor",
"id": "omem_5fGhJkLmNpQrStUv",
"type": "member",
"organization_id": "org_7hNkPqRsTuVwXyZa",
"name": "Alex Chen",
"email": "[email protected]",
"image_url": "https://avatar-cdn.metorial.com/aimg_1234567890",
"teams": [
{
"id": "tm_3eFgHjKlMnPqRsTu",
"name": "Engineering",
"slug": "engineering",
"assignment_id": "tmas_8jKlMnPqRsTuVwXy"
},
{
"id": "tm_3eFgHjKlMnPqRsTu",
"name": "Engineering",
"slug": "engineering",
"assignment_id": "tmas_8jKlMnPqRsTuVwXy"
}
]
},
"consumer": {
"object": "consumer"
}
}
}

List store participants

Returns a paginated list of participants for a specific store.

URL Parameters

store_id

String

The unique identifier for the store

Query Parameters

limit

NumberOptional

after

StringOptional

before

StringOptional

cursor

StringOptional

order

EnumOptional
GEThttp://api.metorial.com/stores/:store_id/participants
curl -X GET "https://api.metorial.com/stores/sto_Rm4Mnheq2bfEPhBhP7SY/participants" \
-H "Authorization: Bearer metorial_sk_..."

Get store participant by ID

Retrieves a specific participant within a store.

URL Parameters

store_id

String

The unique identifier for the store

store_participant_id

String

The unique identifier for the store_participant

GEThttp://api.metorial.com/stores/:store_id/participants/:store_participant_id
curl -X GET "https://api.metorial.com/stores/sto_Rm4Mnheq2bfEPhBhP7SY/participants/sto_Rm4Mnheq2bfEPhBhP7SY" \
-H "Authorization: Bearer metorial_sk_..."