v1
latestOpenAPI 3.0.32026-07-248079274.0 KBList Account Updater requests
Retrieve a paginated list of Account Updater requests across your stored cards - both the manual requests you create through the create endpoint and those raised by Acquired.com's automatic processes. Results are sorted by created_datetime descending.
If no date filter is supplied, results default to the last 30 days. Provide any of the date filters to query a different period.
📘 Older requests
Some older Account Updater requests have limited information available: the outcome is shown as unknown with no outcome_detail, and the source of the request may also be unavailable.
Query parameters
The record to start the response on.
A limit on the scope of values returned in the response.
Filter to a single card.
Filter results to cards stored against a specific customer_id.
Optional. Filter results to a single company you have access to. Results are always limited to the companies your credentials can access; when set, company_id narrows them further to the specified company. This filter is applied in addition to — not instead of — the Company-Id header scope, and you must have permission for the company supplied.
Filter to a single merchant, by its numeric merchant ID.
Filter by status. Comma-separate multiple values, e.g. completed,failed. Allowed values: pending, submitted, completed, failed.
Return requests created at or after this ISO 8601 datetime.
Return requests created at or before this ISO 8601 datetime.
Return requests completed at or after this ISO 8601 datetime.
Return requests completed at or before this ISO 8601 datetime.
Headers
Unique ID assigned by Acquired.com for your company.
Unique ID assigned by Acquired.com connecting to a specific acquiring bank.
Response
OK
Example response
{
"meta": {
"links": [
{
"rel": "first",
"href": "/v1/path?offset=0",
"title": "first page"
}
]
},
"data": [
{
"id": "0190f9bd-2c4f-7000-9000-aabbccddeeff",
"card_id": "a7e3fde5-5b83-44f4-9915-782bc7121717",
"customer_id": "b1d4e0f2-7c3a-4e5b-9f6d-1a2b3c4d5e6f",
"mid_id": "c2e5f1a3-8d4b-4f6c-a07e-2b3c4d5e6f70",
"initiated_by": "manual",
"status": "completed",
"outcome": "card_updated",
"outcome_detail": {
"previous_bin": "492181",
"previous_last4": "1234",
"previous_expiry_month": 1,
"previous_expiry_year": 26,
"new_bin": "550000",
"new_last4": "5678",
"new_expiry_month": 4,
"new_expiry_year": 31
},
"created_datetime": "2026-06-20T10:00:00Z",
"submitted_datetime": "2026-06-20T10:05:00Z",
"completed_datetime": "2026-06-21T02:45:00Z"
}
]
}