Splits
Retrieve a split
Retrieve a single split by ID, including its recipients and their shares. Email invitees who have not yet accepted are shown with a masked email address and their invite status. Splits belonging to another store are not visible.
get/v1/splits/{id}
Path parameters
idstring required
The unique identifier of the split
Response
Successfully retrieved the split
Example response
{
"object": "split",
"store_id": "store_1a2b3c4d",
"description": "Q3 revenue share",
"type": "store",
"type_reference": "prod_1a2b3c4d",
"enabled": true,
"recipients": [
{
"type": "percentage",
"recipient_type": "store",
"recipient_reference": "store_1a2b3c4d",
"amount": 25,
"enabled": true,
"invite_status": "pending"
}
],
"created_at": 1735689600000
}Changes
Changed in 1 of the 4 revisions of this API.1
- ○
endpoint added
endpoint-added
- ○