API ReferenceapicommsGET /v1/push/vapid-key

GET /v1/push/vapid-key

Service: comms · operationId: (none)

Return the public VAPID key for Web Push subscription.

Required scopes

(no scope declared — review service config)

Responses

200 Public VAPID key

{
  "type": "object",
  "properties": {
    "vapid_public_key": {
      "type": "string"
    }
  },
  "required": [
    "vapid_public_key"
  ]
}

Example

curl -X GET https://comms.platform.loop.health/v1/push/vapid-key \
  -H "Authorization: Bearer $ACCESS_TOKEN"