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

Get Poster Names

Returns an array of postedBy names pulled from previous messages.

GET /api/MessageBoard/GetPosterNames

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

Response

{
    "success": true,
    "error": "",
    "data": [
        "Jon Smith",
        "Jane Johnson"
    ]
}