Skip to content
  • Auto
  • Light
  • Dark
Get Started

Create Transactions

Search
post/api/v1/search/step-up/transactions

Search allows searching for step-up transactions with various filters

Body Parameters
createdAfterstring
optional
formatdate-time
createdBeforestring
optional
formatdate-time
pageSizenumber
optional

Maximum number of results to return

formatint32
pageTokenstring
optional

Token for pagination

providerIdstring
optional

Filter by provider ID

stateenum
optional
"STEP_UP_TRANSACTION_STATE_UNSPECIFIED" OR "STEP_UP_TRANSACTION_STATE_PENDING" OR "STEP_UP_TRANSACTION_STATE_VERIFIED" OR "STEP_UP_TRANSACTION_STATE_ERROR"

Filter by transaction state

Hide ParametersShow Parameters
"STEP_UP_TRANSACTION_STATE_UNSPECIFIED"
"STEP_UP_TRANSACTION_STATE_PENDING"
"STEP_UP_TRANSACTION_STATE_VERIFIED"
"STEP_UP_TRANSACTION_STATE_ERROR"
targetTypeenum
optional
"TARGET_TYPE_UNSPECIFIED" OR "TARGET_TYPE_TICKET" OR "TARGET_TYPE_TEST"

The targetType field.

Hide ParametersShow Parameters
"TARGET_TYPE_UNSPECIFIED"
"TARGET_TYPE_TICKET"
"TARGET_TYPE_TEST"
taskIdstring
optional

Filter by task ID (only applicable if target_type is TICKET)

userIdstring
optional

Filter by user ID

Returns
listarray of idstringapproveTaskobjectclaimsmapcreatedAtstringerrorMessagestringexpiresAtstringproviderIdstringstateenumtestunknownupdatedAtstringuserIdstringStepUpTransaction
optional

List of transactions matching the search criteria

nextPageTokenstring
optional

Token for retrieving the next page of results

Request example cURL
curl https://{tenantDomain}.conductor.one/api/v1/search/step-up/transactions \
    -H 'Content-Type: application/json' \
    -H "Authorization: Bearer $CONDUCTORONE_SDK_API_KEY"
200 Example
{
  "list": [
    {
      "id": "id",
      "approveTask": {
        "policyStepId": "policyStepId",
        "taskId": "taskId"
      },
      "claims": {
        "foo": "bar"
      },
      "providerId": "providerId",
      "test": {},
      "userId": "userId"
    }
  ],
  "nextPageToken": "nextPageToken"
}