> Fetch clean Markdown by appending `.md` to any page URL under https://signalwire.com/docs or requesting it with the HTTP header `Accept: text/markdown`. The root index at https://signalwire.com/docs/llms.txt lists the available documentation indexes.

# target

> The member's own RPC target triple.

```ts
get target(): MemberTarget
```

The member's own `{ member_id, call_id, node_id }` triple, used as the target of every member RPC issued against this participant.

#### Inherited from

[`Participant`](/docs/browser-sdk/v4/reference/participant).[`target`](/docs/browser-sdk/v4/reference/participant#target)

Reading it doubles as a readiness probe: it throws until the member's call context has been received, and never regresses afterwards.

## **Throws**

[`ParticipantNotReadyError`](/docs/browser-sdk/v4/reference/errors/participant-not-ready-error) — the member state has not been received yet.

## **Examples**

```ts
const { call_id, member_id } = selfParticipant.target;
```

## **See**

* [`Participant.target`](/docs/browser-sdk/v4/reference/participant/target).