> For the complete documentation index, see [llms.txt](https://program-user-docs.preignition.org/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://program-user-docs.preignition.org/api/member.md).

# member

## Get Program Member

<mark style="color:blue;">`GET`</mark> `https://preignition.org/api/v1/program/:programID/member/:domain`

Endpoint for getting detailed information about members per domain for a program. Only program manager for

`:programID`

have access to this endpoint.

#### Path Parameters

| Name      | Type   | Description                                                                                                                                                                              |
| --------- | ------ | ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
| domain    | string | <p>name of the domain.</p><p><code>program</code></p><p>for members of program domain (e.g. businesses).</p><p><code>programMgmt</code></p><p>for members of program manager domain.</p> |
| programID | string | ID of the program to get member from                                                                                                                                                     |

#### Query Parameters

| Name  | Type   | Description                                               |
| ----- | ------ | --------------------------------------------------------- |
| token | string | A valid token to identify the user initiating the request |

#### Headers

| Name          | Type   | Description                                                                                           |
| ------------- | ------ | ----------------------------------------------------------------------------------------------------- |
| Authorization | string | Authorization header in the form of "Bearer: tokenSring" to identify the user initiating the request. |

{% tabs %}
{% tab title="200 Cake successfully retrieved." %}

```javascript
{
    "name": "Cake's name",
    "recipe": "Cake's recipe name",
    "cake": "Binary cake"
}
```

{% endtab %}

{% tab title="404 Could not find a cake matching this query." %}

```javascript
{
    "message": "Ain't no cake like that."
}
```

{% endtab %}
{% endtabs %}

{% hint style="warning" %}
The request need either token Query Parameter or Header Authorization.
{% endhint %}


---

# Agent Instructions
This documentation is published with GitBook. GitBook is the documentation platform designed so that both humans and AI agents can read, navigate, and reason over technical content effectively. Learn more at gitbook.com.

## Querying This Documentation
If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter:

```
GET https://program-user-docs.preignition.org/api/member.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
