Skip to main content

Test symbolication endpoints

Enterprise

This endpoint is part of Countly Enterprise. To get access, contact sales or compare versions. Existing customers can reach the support portal with questions.

Endpoint

/o/symbolication/test_symbolication_endpoints

Overview

Checks the symbolication server's add, check, get, and ack endpoints from Countly.

Authentication

Pass api_key or auth_token as a query parameter, or send countly-token as a header. See Authentication.

Permissions

  • Required permission: Read on the crashes feature

Request Parameters

ParameterTypeRequiredDescription
server_urlStringYesSymbolication server base URL.
api_keyStringYes (or auth_token)API key authentication.
auth_tokenStringYes (or api_key)Auth token authentication.

Examples

Test symbolication server endpoints

/o/symbolication/test_symbolication_endpoints?server_url=https://symbolication.example.com&api_key=YOUR_API_KEY

Response

Success Response

[
{
"value": "ok"
},
{
"error": "Error 404 from https://symbolication.example.com/symbolication/get_job_result?..."
}
]

Response Fields

FieldTypeDescription
[].valueStringok for a successful endpoint check.
[].errorStringError description for a failed endpoint check.

Error Responses

HTTP StatusResponse
401{ "result": "User does not exist" } or auth validation message

Behavior

  • Verifies remote add/check/get/ack endpoints on the remote symbolication server.
  • Uses sub-action in URL path (not a query action parameter).