> For the complete documentation index, see [llms.txt](https://tag-api.agreefy.com/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://tag-api.agreefy.com/list-all-asset-return.md).

# List all Asset Return

List all organization asset return

* URL Parameter&#x73;**:**

  **pageNumber (Should be greater than 0, if not given default value of 1 will be taken)**

## Get all organization asset return

<mark style="color:blue;">`GET`</mark> `https://<baseurl>/v1/organization/assets/return/@clientUUID/@pageNumber`

#### Path Parameters

| Name       | Type   | Description |
| ---------- | ------ | ----------- |
| clientUUID | string | Client UUID |
| pageNumber | string | Page Number |

#### Headers

| Name           | Type   | Description          |
| -------------- | ------ | -------------------- |
| Authentication | string | Authentication token |

{% tabs %}
{% tab title="200 " %}

```
#########################################################################
## success
#########################################################################

{
    "message": "success",
    "status": 200,
    "data": [
        {
            "uuid": "1f0cbe77-e3c2-4567-87a7-4b9733f8fd99",
            "assetName": "Sprinkler",
            "assetIdentifier": "AD401370",
            "id": 96,
            "transactionName": "Issue_2021_02_16_21_13_05",
            "timestamp": "2021-02-16 17:20:08"
        },
           ],
    "totalCount": "22",
    "totalPages": 3
}


#########################################################################
## Error:No data found
#########################################################################
            
{
	"message": "error",
	"status": 400,
	"description": "No data found"
}

```

{% endtab %}
{% endtabs %}
