PaygateDeveloper documentation

List Testkit Actions

GET/api/v1/test/actions
operationId
testkit.ListTestkitActions
Permission
read

Parameters

FieldinTypeRequiredDescription
cursorquerystring
kindquerystring
limitqueryinteger
sincequerystring (date-time) (date-time)
PG-Versionheaderstring

Responses

200 OK

ListEnvelope_TestkitAction

Response headers: `X-Request-Id`

FieldTypeRequiredDescription
dataTestkitAction[]
has_moreboolean
next_cursorstring | null
{
  "data": [
    {
      "actor_id": "string",
      "actor_kind": "string",
      "actor_name": "string",
      "created_at": "2026-10-01T09:00:00Z",
      "id": "string",
      "kind": "simulate_payment",
      "mode": "string",
      "object_id": "string",
      "object_number": "string",
      "object_type": "string",
      "params": {},
      "request_id": "string",
      "result": "string",
      "updated_at": "2026-10-01T09:00:00Z"
    }
  ],
  "has_more": false,
  "next_cursor": "string"
}

default Error

Problem

FieldTypeRequiredDescription
codestringYes
detailstring
detailsobject
errorsobject[]
errors.codestring
errors.fieldstring
errors.messagestring
instancestring
statusintegerYes
titlestringYes
typestring
{
  "code": "string",
  "detail": "string",
  "details": {},
  "errors": [
    {
      "code": "string",
      "field": "string",
      "message": "string"
    }
  ],
  "instance": "string",
  "status": 0,
  "title": "string",
  "type": "string"
}

Errors

Derived from the modules this operation touches, because the snapshot carries no x-errors list yet — it may list codes this operation cannot return.

Try it

GET/test/actions

Makes a real call in test mode with your own key. The key stays in this tab and is never sent anywhere but the API.

No API base URL is configured for this environment, so try-it is unavailable.

Starts with pg_test_. A live key is refused before any request is made.

curl -X GET '<API_BASE_URL>/api/v1/test/actions' \
  -H 'Authorization: Bearer pg_test_…' \
  -H 'PG-Version: 2026-09-01'