GET
/
api
/
payments
/
connectors
/
{connector}
/
tasks
/
{taskId}
curl --request GET \
  --url http://localhost:55001/api/payments/connectors/{connector}/tasks/{taskId} \
  --header 'Authorization: Bearer <token>'
{
  "data": {
    "id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
    "connectorID": "<string>",
    "createdAt": "2023-11-07T05:31:56Z",
    "updatedAt": "2023-11-07T05:31:56Z",
    "status": "PENDING",
    "state": {},
    "error": "<string>",
    "descriptor": {
      "name": "<string>",
      "main": true,
      "account": "<string>"
    }
  }
}

Authorizations

Authorization
string
header
required

The access token received from the authorization server in the OAuth 2.0 flow.

Path Parameters

connector
enum<string>
required

The name of the connector.

Available options:
STRIPE,
DUMMY-PAY,
WISE,
MODULR,
CURRENCY-CLOUD,
BANKING-CIRCLE,
MANGOPAY,
MONEYCORP,
ATLAR,
ADYEN,
GENERIC
taskId
string
required

The task ID.

Response

200
application/json

OK

The response is of type object.