Get Formats
Returns an array of format options.
GET /api/MessageBoard/GetFormats
Query Parameters
| Parameter | Required | Type | Description |
|---|---|---|---|
| key | yes | string |
API key provided by Grandville Printing Company |
Reponse Body
interface {
success: boolean,
error: string,
data: string[],
}
Example
Request
curl 'https://{origin}/api/MessageBoard/GetFormats?key={secret}'
Response
{
"success": true,
"error": "",
"data": [
"Format A",
"Format B",
"Format C"
]
}