Returns published sheet templates available to the authenticated API key.
Parameters
No parameters
Example request
curl -X GET "https://api.readysheet.com/v1/external/sheet_templates" \
-H "Authorization: Bearer ${API_KEY}" \
-H "Content-Type: application/json"
Responses
| Status | Description |
|---|---|
| 200 | Successful response |
| 401 | Invalid API key |
| 403 | Permission denied |
| 429 | Rate limit exceeded |
Response schema
{
"type": "object",
"properties": {
"data": {
"type": "array",
"items": {
"type": "object",
"properties": {
"id": {
"type": "string"
},
"title": {
"type": "string"
},
"description": {
"type": "string"
},
"status": {
"type": "string"
},
"slug": {
"type": "string"
},
"lastUpdatedAt": {
"type": "string"
}
}
}
}
}
}
Response example
{
"data": [
{
"id": "string",
"title": "string",
"description": "string",
"status": "string",
"slug": "string",
"lastUpdatedAt": "string"
}
]
}
Try it
GET /v1/external/sheet_templates