Sep06PatchTransactionRequest

data class Sep06PatchTransactionRequest(val id: String, val fields: Map<String, String>, val jwt: String)

Request to update a transaction with additional information requested by the anchor.

This endpoint allows clients to provide additional information that the anchor has requested after a transaction was initiated. This is typically used when the anchor needs extra details such as destination information, KYC fields, or other transaction-specific requirements.

The transaction must be in the "pending_transaction_info_update" status for this request to succeed. The required fields can be found in the transaction's requiredInfoUpdates property.

Constructors

Link copied to clipboard
constructor(id: String, fields: Map<String, String>, jwt: String)

Properties

Link copied to clipboard

Map of field names to values being updated. Keys should match the field names from the transaction's requiredInfoUpdates property.

Link copied to clipboard
val id: String

Anchor's unique identifier for the transaction to update.

Link copied to clipboard
val jwt: String

SEP-10 JWT token for authentication. Required to verify ownership of the transaction.