Skip to main content
GET
/
v1
/
{workspace}
/
ws_signing_key
List Workspace Signing Keys
curl -X GET "https://management-api.suprsend.com/v1/{workspace}/ws_signing_key/" \
  --header 'Authorization: ServiceToken <SERVICE_TOKEN>' \
  --header 'Content-Type: application/json'
{
  "meta": {
    "count": 2,
    "limit": 10,
    "offset": 0
  },
  "results": [
    {
      "id": "ws_signk_exampleId01",
      "uid": "signing_key_exampleUid01",
      "status": "active",
      "allowed_domains": null,
      "expiry_at": null,
      "created_at": "2026-04-02T19:35:06.513406Z",
      "created_by": {
        "name": "Example User",
        "email": "user@example.com"
      },
      "rolled_at": null,
      "rolled_by": null,
      "deleted_at": null,
      "deleted_by": null
    },
    {
      "id": "ws_signk_exampleId02",
      "uid": "signing_key_exampleUid02",
      "status": "rolled",
      "allowed_domains": null,
      "expiry_at": null,
      "created_at": "2024-09-08T16:27:46.700367Z",
      "created_by": {
        "name": "Example User",
        "email": "user@example.com"
      },
      "rolled_at": "2026-04-02T19:35:06.503029Z",
      "rolled_by": {
        "name": "Example User",
        "email": "user@example.com"
      },
      "deleted_at": null,
      "deleted_by": null
    }
  ]
}

Documentation Index

Fetch the complete documentation index at: https://docs.suprsend.com/llms.txt

Use this file to discover all available pages before exploring further.

Authorizations

ServiceToken <token>
string
header
required

You can get Service Token from SuprSend dashboard -> Account Settings -> Service Tokens section.

Path Parameters

workspace
string
required

Workspace slug (e.g. staging, production).

Response

Successfully retrieved signing keys.

meta
object

Pagination metadata (when applicable)

results
object[]