A Settlement Queue Entry
resource represents an entry in the settlement queue used to track when and how a transfer is queued to be processed.
If a merchant's settlement_queue_mode
is set to MANUAL
, all transfers will have a Settlement Queue Entry
created and will not be placed into settlement until the Settlement Queue Entry
is explicitly released using a PUT Update Settlement Queue Entries
request.
Retrieve a list of Settlement Queue Entry
resources.
For details on how to query endpoints using the available parameters, see Query Parameters.
Finix-Version | string Default: 2018-01-01 Specify the API version of your request. For more details, see Versioning. Example: 2022-02-01 |
List of Settlement Queue Entry
objects
Authentication information is missing or invalid
Forbidden
Object does not exist
Invalid field
curl "https://finix.sandbox-payments-api.com/settlement_queue_entries" \ -H "Finix-Version: 2022-02-01" \ -u USsRhsHYZGBPnQw8CByJyEQW:8a14c2f9-d94b-4c72-8f5c-a62908e5b30e
{- "_embedded": {
- "settlement_queue_entries": [
- {
- "id": "settlement_queue_entry_3cNtvPQKg7r7grojhRNeGZ",
- "created_at": "2024-09-03T12:07:19.93Z",
- "updated_at": "2024-09-03T12:07:19.93Z",
- "application_id": "APqVS885ihR1aipjfz6AxDs8",
- "entity_id": "TRu2QArmUeRYfcZNZq6aSNwP",
- "entity_type": "FEE",
- "merchant_id": "MUhbEyQ1h2CZFqwYVVkxeXpX",
- "platform_id": "PLvqJ9L76HBJKCetEpzd5fJq",
- "ready_to_settle_after": "2024-09-09T12:07:19.36Z",
- "state": "PENDING",
- "_links": {
}
}
]
}, - "page": {
- "limit": 100,
- "next_cursor": "settlement_queue_entry_ny9JVgNH6j2hegaXkpuaHf"
}
}
This action is used to release a number of Settlement Queue Entry
resources, allowing them to be included in a Settlement
as Settlement Entry
resources.
Finix-Version | string Default: 2018-01-01 Specify the API version of your request. For more details, see Versioning. Example: 2022-02-01 |
No content
Authentication information is missing or invalid
Forbidden
Object does not exist
Invalid field
{- "total": 0,
- "_embedded": {
- "errors": [
- {
- "code": "UNKNOWN",
- "logref": {
- "logref": "string"
}, - "message": "string",
- "_links": {
- "self": {
- "href": "string"
}, - "source": {
- "href": "string"
}
}
}
]
}
}
Retrieve the details of a Settlement Queue Entry
created from a Transfer
, Fee
, or Reversal
.
Finix-Version | string Default: 2018-01-01 Specify the API version of your request. For more details, see Versioning. Example: 2022-02-01 |
A single Settlement Queue Entry
object
Authentication information is missing or invalid
Forbidden
Object does not exist
Invalid field
curl "https://finix.sandbox-payments-api.com/settlement_queue_entries/settlement_queue_entry_cdhqdXjTQfg62wHzJ41g5" \ -H "Finix-Version: 2022-02-01" \ -u USsRhsHYZGBPnQw8CByJyEQW:8a14c2f9-d94b-4c72-8f5c-a62908e5b30e
{- "id": "settlement_queue_entry_3cNtvPQKg7r7grojhRNeGZ",
- "created_at": "2024-09-03T12:07:19.93Z",
- "updated_at": "2024-09-03T12:07:19.93Z",
- "application_id": "APqVS885ihR1aipjfz6AxDs8",
- "entity_id": "TRu2QArmUeRYfcZNZq6aSNwP",
- "entity_type": "FEE",
- "merchant_id": "MUhbEyQ1h2CZFqwYVVkxeXpX",
- "platform_id": "PLvqJ9L76HBJKCetEpzd5fJq",
- "ready_to_settle_after": "2024-09-09T12:07:19.36Z",
- "state": "PENDING",
- "_links": {
}
}