---
title: "Copy Records"
canonical: "https://support.soutron.net/space/LMSAPI/2228362/Copy%20Records"
format: markdown
---
## <span style="color: #008000">GET </span><span style="color: #008000">/catalogues/{CatalogueID}/copies</span>

<span style="color: #000000">**Description**</span><span style="color: #0000ff">**:**</span> Get list copy data for a selected CID.

| **Parameter** | **Example** | **Notes** |
| --- | --- | --- |
| CatalogueID [Required] | 347566 | CID for record to get related data of. |
| deleted | &deleted=NonDeleted | Returns deleted & non-deleted copies<br>0= NonDeleted (Default)<br>1= Deleted<br>2= Any |
| virtual | &virtual=Any | Returns Physical & virtual copies<br>0= Physical<br>1= Virtual<br>2= Any (Default) |
| reference | &reference=NonReference | Returns delated & non-deleted copies<br>0= Reference<br>1= NonReference<br>2= Any(Default) |
| Status | &status=In,2,20 | Return copies with a specific status. If not specified all are returned.<br>1= In  
2= Out   
3= Received  
4= Part Received  
6= On Order  
10= Being Circulated   
11= Awaiting Collection   
20= Pending Reservation   
21= Being Viewed   
22= Awaiting Viewing |
| offices | &offices=1,2,3,4 | List of offices to filter copies by. |
| libraries | &libraries=1,2,3,4 | List of libraries to filter copies by. |

**Request**: /SoutronAPI/catalogues/405164/copies?deleted=Both&virtual=Both

<details>
<summary>Response</summary>

```xml
<RecordCopiesResult xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Soutron.API.ServiceModel.Catalogues">
	<Copies>
		<RecordCopyItem>
			<Barcode>0260</Barcode>
			<CopyID>358410</CopyID>
			<Details i:nil="true"/>
			<IsDeleted>true</IsDeleted>
			<IsReference>false</IsReference>
			<IsVirtual>false</IsVirtual>
			<LibraryID>1</LibraryID>
			<LibraryName>Library</LibraryName>
			<LoanDueDate i:nil="true"/>
			<LoanPeriodID i:nil="true"/>
			<LoanPeriodName i:nil="true"/>
			<Notes i:nil="true"/>
			<OfficeID>1</OfficeID>
			<OfficeName>London</OfficeName>
			<RecordID>405164</RecordID>
			<ShelfReference i:nil="true"/>
			<Status>1</Status>
			<SublocationName i:nil="true"/>
		</RecordCopyItem>
	</Copies>
</RecordCopiesResult>
```
</details>