# com.publicdomainrelay.temp.requester.associateConfirm

> Published by [johnandersen777.bsky.social](https://lexicon.garden/identity/did:plc:5svqtrhheairglgiiyvutzik)

✓ This is the authoritative definition for this NSID.

## Links

- [View on Lexicon Garden](https://lexicon.garden/lexicon/did:plc:5svqtrhheairglgiiyvutzik/com.publicdomainrelay.temp.requester.associateConfirm)
- [Documentation](https://lexicon.garden/lexicon/did:plc:5svqtrhheairglgiiyvutzik/com.publicdomainrelay.temp.requester.associateConfirm/docs)
- [Examples](https://lexicon.garden/lexicon/did:plc:5svqtrhheairglgiiyvutzik/com.publicdomainrelay.temp.requester.associateConfirm/examples)

## Definitions

### `com.publicdomainrelay.temp.requester.associateConfirm`

**Type**: `procedure`

Confirm requester association via PDS service-proxied XRPC call. The webapp calls this through the user's PDS with atproto-proxy header set to the requester's DID with #requester_associate service. The requester verifies the inter-service auth JWT, resolves the caller's handle, and presents a CLI confirmation prompt before proceeding with the RFP flow.

#### Input

**Encoding**: `application/json`

| Property | Type | Required | Description |
|----------|------|----------|-------------|

#### Output

**Encoding**: `application/json`

| Property | Type | Required | Description |
|----------|------|----------|-------------|
| `ok` | `boolean` | Yes |  |
| `requesterDid` | `string` | Yes |  |

#### Errors

- **InvalidRequest**

## Raw Schema

```json
{
  "id": "com.publicdomainrelay.temp.requester.associateConfirm",
  "defs": {
    "main": {
      "type": "procedure",
      "input": {
        "schema": {
          "type": "object",
          "properties": {}
        },
        "encoding": "application/json"
      },
      "errors": [
        {
          "name": "InvalidRequest"
        }
      ],
      "output": {
        "schema": {
          "type": "object",
          "required": [
            "ok",
            "requesterDid"
          ],
          "properties": {
            "ok": {
              "type": "boolean"
            },
            "requesterDid": {
              "type": "string"
            }
          }
        },
        "encoding": "application/json"
      },
      "description": "Confirm requester association via PDS service-proxied XRPC call. The webapp calls this through the user's PDS with atproto-proxy header set to the requester's DID with #requester_associate service. The requester verifies the inter-service auth JWT, resolves the caller's handle, and presents a CLI confirmation prompt before proceeding with the RFP flow."
    }
  },
  "$type": "com.atproto.lexicon.schema",
  "lexicon": 1
}
```
