First PSB API call: GET /api/v1/me to verify your token, party context and environment.
Validate credentials and environment with a read-only smoke test before you send documents.
GET /api/v1/me HTTP/1.1
Host: accp-psb.econnect.eu
Accept: application/json
Authorization: Bearer eyJhbGciOiJSUzI1NiIsInR5cCI6IkpXVCJ9...
TOKEN=$(curl -s -X POST https://accp-identity.econnect.eu/connect/token \
-H "Content-Type: application/x-www-form-urlencoded" \
-d "grant_type=client_credentials" \
-d "client_id=your-client-id" \
-d "client_secret=your-client-secret" \
-d "scope=ap" | jq -r '.access_token')
curl -s \
-H "Accept: application/json" \
-H "Authorization: Bearer $TOKEN" \
https://accp-psb.econnect.eu/api/v1/me | jq .
200 with JSON (no HTML login or gateway error)401403scope=ap and account setupaccp-*.econnect.eu