Skip to main content
POST
/
payment-controls
/
imports
/
process
Queue uploaded payment-control imports for processing
curl --request POST \
  --url https://lens-api.tic.io/payment-controls/imports/process \
  --header 'Content-Type: application/json-patch+json' \
  --header 'x-api-key: <api-key>' \
  --data '
{
  "importGuids": [
    "3c90c3cc-0d44-4b50-8888-8dd25736052a"
  ],
  "correlationId": "<string>",
  "webhookUrl": "<string>",
  "webhookSecret": "<string>"
}
'
{
  "processedCount": 123,
  "skippedCount": 123,
  "errors": [
    "<string>"
  ]
}

Documentation Index

Fetch the complete documentation index at: https://docs.tic.io/llms.txt

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

Enterprise+ tier

Authorizations

x-api-key
string
header
required

Body

importGuids
null | string<uuid>[]
correlationId
null | string
webhookUrl
null | string
webhookSecret
null | string

Response

Processed/skipped counts and any per-import errors

processedCount
integer<int32>
skippedCount
integer<int32>
errors
null | string[]