Platform

Platform

Publieke health-check en context van je API-key (environment, actor, scopes).

API-status controleren

GET /v1/ping
Authorization: None
Geen authenticatie vereist.
Request body

Geen

Response
data object
pong boolean
Example: 1
surface string
Enum
extern
version string
Example: v1
meta object

Examples

GET /v1/ping
curl -X GET "https://api.appficient.nl/v1/ping" \
  -H "Accept: application/json"

Curl, Node en response staan rechts naast dit endpoint.

API-verbinding testen

POST /v1/ping
Authorization: None
Geen authenticatie vereist.
Request body

Geen

Response
data object
pong boolean
Example: 1
surface string
Enum
extern
version string
Example: v1
meta object

Examples

POST /v1/ping
curl -X POST "https://api.appficient.nl/v1/ping" \
  -H "Accept: application/json"

Curl, Node en response staan rechts naast dit endpoint.

API-sleutelgegevens ophalen

GET /v1/me
Authorization: HTTP
name: httpBearer
type: http
scheme: bearer
Request body

Geen

Response
data object

API key context.

surface string
Enum
extern
actor object
type string

Usually `api_key` for Bearer auth.

Enum
api_key user link subscription_token none
label string
scopes array
meta object

Examples

GET /v1/me
curl -X GET "https://api.appficient.nl/v1/me" \
  -H "Authorization: Bearer apf_xxxxxxxx" \
  -H "Accept: application/json"

Curl, Node en response staan rechts naast dit endpoint.