readmeerrors add messagedelete messageget ad typesget formatsget issue typesget keysget message typesget poster namesget solution typesget stocks attachmentmessage typemessage

Get Keys

Returns an array of department keys.

GET /api/MessageBoard/GetKeys

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/GetKeys?key={secret}'

Response

{
    "success": true,
    "error": "",
    "data": [
        "001",
        "002",
        "003"
    ]
}