> ## Documentation Index
> Fetch the complete documentation index at: https://docs.iso20022js.com/llms.txt
> Use this file to discover all available pages before exploring further.

# Parties

> A party involved in the transaction.

### Party

Represents a party involved in a payment transaction.

In `iso20022.js` this represents initiating party (you), debter, and creditor, which are present in all transactions.

```typescript theme={null}
interface Party {
  id?: string;
  name?: string;
  address?: StructuredAddress;
  account?: Account;
  agent?: Agent;
}
```
