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

Get Issue Types

Returns an array of issue types.

GET /api/MessageBoard/GetIssueTypes

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

Response

{
    "success": true,
    "error": "",
    "data": [
        "Type 1",
        "Type 2",
        "Type 3"
    ]
}