Public Endpoint - Custom Markers

This endpoint is an alternative to our markers api endpoint endpoint, and uses a different authentication method.

Endpoint

Request method: POST

EndpointDescription
https://appsignal-endpoint.net/markersAccepts JSON formatted data

URL parameters

Depending on the API key you'd like to use, you can either:

Push API key

ParameterTypeDescription
api_keyStringPush API key, can be found in App settings.
nameStringThe application name.
environmentStringThe environment that the application is running in.
Shell
https://appsignal-endpoint.net/markers?api_key=<api_key>&name=<name>&environment=<environment>

Front-end API key

ParameterTypeDescription
api_keyStringFront-end API key, can be found in App settings.
Shell
https://appsignal-endpoint.net/markers?api_key=<api_key>

Body parameters

The post body should contain a JSON object, formatted as follows:

ParameterTypeDescription
created_atDate - ISO 8601Time at which to insert the marker. Leave empty to use the current time.
iconString - OptionalEmoji to use for this Custom marker, defaults to 🚀.
messageString - OptionalMessage shown when hovering over the marker in the UI. Truncated to 200 characters.

For example:

JSON
{ "created_at": "2015-07-21T15:06:31.737+02:00", "icon": "🚀", "message": "Upscaled the database for better performance" }