**Source URL:** https://general.veevavault.dev/vault-api/api-reference/25.1/custom-pages/retrieve-single-client-code-distribution-metadata.md

# Retrieve Single Client Code Distribution Metadata



Retrieve metadata for a specific client code distribution, including its name, size, and details from the uploaded `distribution-manifest.json` file.

<Endpoint path="/api/{version}/uicode/distributions/{distribution_name}" method="GET"></Endpoint>

## Headers {#headers}

<FieldTable>
| Name | Description |
| --- | --- |
| `Accept` | `application/json` (default) or `application/xml` |
</FieldTable>

## URI Path Parameters {#uri-path-parameters}

<FieldTable>
| Name | Description |
| --- | --- |
| `{distribution_name}` | The `name` attribute of the client code distribution to retrieve. |
</FieldTable>

## Request {#request}

<CodeExample title="">
```
curl -X GET -H "Authorization: {SESSION_ID}" \
https://myvault.veevavault.com/api/v25.1/uicode/distributions/custom_pages__c

```
</CodeExample>

## Response {#response}

<CodeExample title="">
```
{
    "responseStatus": "SUCCESS",
    "data": {
        "name": "custom_pages__c",
        "checksum": "aef4acfadc4b50a0324f792e217befd3",
        "size": 493836
    }
}

```
</CodeExample>

## Response Details {#response-details}

The response contains the following metadata, including metadata provided in the [`distribution-manifest.json` file](/custom-pages/references/client-distributions):



---

**Previous:** [Retrieve All Client Code Distribution Metadata](/vault-api/api-reference/25.1/custom-pages/retrieve-all-client-code-distribution-metadata)  
**Next:** [Download Single Client Code Distribution](/vault-api/api-reference/25.1/custom-pages/download-single-client-code-distribution)