Endpoint
Request method:POST
URL parameters
Depending on the API key you’d like to use, you can either:Push API key
Shell
Front-end API key
Shell
Body parameters
The post body should contain a JSON object, formatted as follows:
For example:
Documentation Index
Fetch the complete documentation index at: /llms.txt
Use this file to discover all available pages before exploring further.
POST
| Endpoint | Description |
|---|---|
| https://appsignal-endpoint.net/markers | Accepts JSON formatted data |
| Parameter | Type | Description |
|---|---|---|
| api_key | String | Push API key, can be found in App settings. |
| name | String | The application name. |
| environment | String | The environment that the application is running in. |
https://appsignal-endpoint.net/markers?api_key=<api_key>&name=<name>&environment=<environment>
| Parameter | Type | Description |
|---|---|---|
| api_key | String | Front-end API key, can be found in App settings. |
https://appsignal-endpoint.net/markers?api_key=<api_key>
| Parameter | Type | Description |
|---|---|---|
| created_at | Date - ISO 8601 | Time at which to insert the marker. Leave empty to use the current time. |
| icon | String - Optional | Emoji to use for this Custom marker, defaults to 🚀. |
| message | String - Optional | Message shown when hovering over the marker in the UI. Truncated to 200 characters. |
{
"created_at": "2015-07-21T15:06:31.737+02:00",
"icon": "🚀",
"message": "Upscaled the database for better performance"
}
Was this page helpful?