> For the complete documentation index, see [llms.txt](https://vu-custom.gitbook.io/vu-custom/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://vu-custom.gitbook.io/vu-custom/admin-api/fulfillments/retrieve-a-fulfillment.md).

# Retrieve a fulfillment&#x20;

Method : <mark style="color:green;">**GET**</mark>

{% code fullWidth="false" %}

```url
https://os.vucustom.com/api/v1/fulfillments?id=&tracking_number=
```

{% endcode %}

URL Parameters

<table><thead><tr><th width="187">Field Name</th><th>Description</th></tr></thead><tbody><tr><td>id</td><td>System-generated unique identifier for the fulfillment</td></tr><tr><td>tracking_number</td><td>Carrier-provided tracking number</td></tr></tbody></table>

<details>

<summary>Example Request</summary>

```
https://os.vucustom.com/api/v1/fulfillments?id=&tracking_number=
```

</details>

{% tabs %}
{% tab title="200" %}
**`200 Successful response example`**

```json
{
	"fulfillment": {
		"id": 78,
		"tracking_number": "12345",
		"carrier_name": "Fedex",
		"carrier_code": "FED",
		"service_name": "Next day air",
		"service_code": "NDA",
		"weight": "1.5",
		"recipient": {
			"recipient_address_1": "test str 1",
			"recipient_city": "Test",
			"recipient_name": "Test Test",
			"recipient_state_region": "DE",
			"recipient_country": "US",
			"recipient_postal_code": "123",
			"recipient_phone": "123"
		},
		"dimensions": {
			"height": "3.5",
			"width": "3.0",
			"length": "3.0"
		},
		"order_lines": [
			{
				"id": 110,
				"order_line_id": 391,
				"quantity": 1
			}
		]
	}
}
```

{% endtab %}

{% tab title="401 " %}
**`401 Unauthorized`**

`The client doesn’t have correct authentication credentials.`

```
{
"errors": "[API] Invalid API key or secret (unrecognized login or wrong password)"
}
```

{% endtab %}

{% tab title="403" %}
**`403 Forbidden`**

`The server is refusing to respond. This is typically caused by incorrect access.`
{% endtab %}

{% tab title="404" %}
**`404 Not Found`**

`The requested resource was not found but could be available again in the future.`
{% endtab %}

{% tab title="422" %}
**`422 Unprocessable Entity`**
{% endtab %}

{% tab title="5xx" %}
**`5xx Errors`**

`An internal error occurred in VU Admin.`
{% endtab %}
{% endtabs %}


---

# 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, and the optional `goal` query parameter:

```
GET https://vu-custom.gitbook.io/vu-custom/admin-api/fulfillments/retrieve-a-fulfillment.md?ask=<question>&goal=<endgoal>
```

`ask` is the immediate question: it should be specific, self-contained, and written in natural language.
`goal` is optional and describes the broader end goal you are ultimately trying to accomplish on behalf of the user. GitBook uses it to tailor the answer towards what is most useful for that goal.

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.
