input ContactVaultTokensInput
Filter and pagination for 'Contact.vaultTokens'. The contact is the one the field hangs off, so there is no contact or organization filter to pass. Pagination works as on 'VaultTokensInput': forward with first + after, backward with last + before, and a request that combines the two directions is rejected as a validation error.
| Field | Type | Description |
|---|---|---|
first | Int | Forward pagination: return at most the first N tokens from the start of the result window. Pair with after to walk forward. Do not combine with last/before. When omitted (and no last or before), a default page size is used. |
after | String | Forward pagination cursor: return the tokens that come after this cursor. Use the pageInfo.endCursor from the previous page. Pair with first. |
last | Int | Backward pagination: return at most the last N tokens nearest the end of the result window. Pair with before to walk backward. Do not combine with first/after. |
before | String | Backward pagination cursor: return the tokens that come before this cursor. Use the pageInfo.startCursor from the previous page. Pair with last. |
type | VaultTokenType | Return only tokens of this kind. Omit to return both cards and bank accounts. |
status | VaultTokenStatus | Return only tokens in this state. Omit to return every state. |
externalRef | String | Return only tokens carrying this externalRef. |
includeDeleted | Boolean | Include tokens that have been deleted. Defaults to false, so deleted tokens are omitted. Status is still judged for a deleted token, so the status filter applies to it too. |