action bunq_list_all_registry_settlement_for_user_registry { description: "Get a listing of all Slice group settlements." provider: bunq method: GET path: "/user/{userID}/registry/{registryID}/registry-settlement" encoding: json input: { type: "object" properties: { registryID: { type: "integer" } userID: { type: "integer" } } required: ["registryID", "userID"] additionalProperties: false } output: { type: "array" items: { type: "object" properties: { created: { type: "string" description: "The timestamp of the RegistrySettlement's creation." } id: { type: "integer" description: "The id of the RegistrySettlement." } items: { type: "array" description: "List of RegistrySettlementItems" items: { type: "object" properties: { amount: { type: "object" properties: { currency: { type: "string" description: "The currency of the amount. It is an ISO 4217 formatted currency code." } value: { type: "string" description: "The amount formatted to two decimal places." } } } membership_paying: { type: "object" properties: { alias: { type: "object" properties: { avatar: { type: "object" properties: { anchor_uuid: { type: "string" description: "The public UUID of object this avatar is anchored to." } image: { type: "array" description: "The actual image information of this avatar." items: { type: "object" additionalProperties: true } } style: { type: "string" description: "The style (if applicable) for this Avatar." } uuid: { type: "string" description: "The public UUID of the avatar." } } } bunq_me: { type: "object" properties: { name: { type: "string" description: "The alias name." } service: { type: "string" description: "The pointer service. Only required for external counterparties." } type: { type: "string" description: "The alias type, can be: EMAIL|PHONE_NUMBER|IBAN." } value: { type: "string" description: "The alias value." } } } country: { type: "string" description: "The country of the user. Formatted as a ISO 3166-1 alpha-2 country code." } display_name: { type: "string" description: "The name to display with this monetary account." } iban: { type: "string" description: "The IBAN of the monetary account." } is_light: { type: "boolean" description: "Whether or not the monetary account is light." } label_user: { type: "object" properties: { avatar: { type: "object" additionalProperties: true } country: { type: "string" description: "The country of the user. 000 stands for \"unknown\"" } display_name: { type: "string" description: "The name to be displayed for this user, as it was given on the request." } public_nick_name: { type: "string" description: "The current nickname of the user." } uuid: { type: "string" description: "The public UUID of the label-user." } } } merchant_category_code: { type: "string" description: "The merchant category code." } swift_account_number: { type: "string" description: "The account number used for a SWIFT payment. May or may not be an IBAN." } swift_bic: { type: "string" description: "The BIC used for a SWIFT payment." } transferwise_account_number: { type: "string" description: "The account number used for a Transferwise payment. May or may not be an IBAN." } transferwise_bank_code: { type: "string" description: "The bank code used for a Transferwise payment. May or may not be a BIC." } } } auto_add_card_transaction: { type: "string" description: "The setting for for adding automatically card transactions to the registry." } balance: { type: "object" additionalProperties: true } invitor: { type: "object" additionalProperties: true } registry_id: { type: "integer" description: "The registry id." } registry_title: { type: "string" description: "The registry title." } status: { type: "string" description: "The status of the RegistryMembership." } status_settlement: { type: "string" description: "The status of the settlement of the Registry. Can be PENDING or SETTLED." } total_amount_spent: { type: "object" additionalProperties: true } uuid: { type: "string" description: "The UUID of the membership." } } } membership_receiving: { type: "object" additionalProperties: true } paying_user_alias: { type: "object" additionalProperties: true } receiving_user_alias: { type: "object" additionalProperties: true } } } } membership_settled: { type: "object" additionalProperties: true } number_of_entries: { type: "integer" description: "The number of RegistryEntry's associated with this RegistrySettlement." } settled_by_alias: { type: "object" additionalProperties: true } settlement_time: { type: "string" description: "The timestamp of the Registry's settlement." } total_amount_spent: { type: "object" additionalProperties: true } updated: { type: "string" description: "The timestamp of the RegistrySettlement's last update." } } } } }