The captured email object is read only.
Name | Type | Description |
---|---|---|
object | string | Is "captured_email". |
string | ||
created | integer | |
space | object |
{
"object": "captured_email",
"email": "[email protected]",
"created": 1410196557,
"space": {
"object": "space",
"id": 1,
"created": 1410196557,
"url": "https://spaces.pe/s/EXAMPLE"
}
}
Returns a list of all captured emails.
curl https://spaces.com/api/v1/captured_emails \
-u ACCESS_TOKEN:
{
"object": "list",
"count": 20,
"has_more": true,
"data": [
{
"object": "customer",
"id": "CUSTOMER_TOKEN",
"name": "John Doe",
"email": "[email protected]",
"created": 1410196557,
"space": {
"object": "space",
"id": 1,
"created": 1410196557,
"url": "https://spaces.pe/s/EXAMPLE"
}
},
{...}
]
}