GET ItemTransfers

Retrieves a list of item transfers.

Request Information

URI Parameters

Name Description Type Additional information
WsAccessKey The Web Service access key for this user and file which allows access to the API for the associated file (found in File - Settings). Using OAuth authentication mechanism is the preferred method to allow API access. string

Optional. Legacy authentication method and only required if not using OAuth. OAuth is preferred.

FileId Specifies the file id of the file to perform the operation upon. integer

Required

LastModifiedFromDate Filter records with LastModifiedDate greater than or equal to a date in UTC (must also specifiy LastModifiedToDate). date

None.

LastModifiedToDate Filter records with LastModifiedDate less than or equal to a date in UTC (must also specifiy LastModifiedFromDate). date

None.

Tags One or more tags that are used to filter the result set by. More tags can be separated with a comma, for example 'tags=tag1,tag2'. string

None.

TagSelection Specifies how to filter when using the supplied tags.Valid values are: requireAny - filter records with ANY ONE of the supplied tags, requireAll - filter records with ALL of the supplied tags, excludeAny - filter records excluding any records with ANY ONE of the specified tags, excludeAll - filter records excluding any records with ALL of the specified tags. string

None.

FromDate Filter records with Date greater than or equal to a date (must also specifiy ToDate). string

None.

ToDate Filter records with Date less than or equal to a date (must also specifiy FromDate). string

None.

Page Specifies the page number of the result set to return. integer

None.

PageSize Specifies the number of records on each page of results. Maximum page size is 100. Defaults to 25 if not specified. integer

None.

Body Parameters

None.

Response Information

Resource Description

ItemTransfersListResponse
Name Description Type Additional information
Transfers List of transfers. Collection of TransferSummary

None.

_links Hypermedia links. Contains contextual links to possible next actions related to this resource. Only present in responses. This data is not to be sent to the server. Collection of Link

None.

Response Formats

application/json, text/json

Sample:
{
  "Transfers": [
    {
      "Id": 123456,
      "LastUpdatedId": "AAAAAAAKgc=",
      "Date": "2016-10-01T00:00:00",
      "Summary": "Test Item transfer entry 1",
      "Tags": [
        "Note",
        "Building Combo"
      ],
      "RequiresFollowUp": false,
      "CreatedDateUtc": "2024-04-18T19:00:10.1505866Z",
      "LastModifiedDateUtc": "2024-04-19T19:00:10.1505866Z",
      "_links": [
        {
          "rel": "detail",
          "href": "https://api.saasu.com/ItemTransfer/123456?FileId=123",
          "method": "GET",
          "title": null
        }
      ]
    },
    {
      "Id": 987654,
      "LastUpdatedId": "AAAAAAAKgc=",
      "Date": "2016-09-01T00:00:00",
      "Summary": "Test Item transfer entry 2",
      "Tags": [
        "Note"
      ],
      "RequiresFollowUp": false,
      "CreatedDateUtc": "2024-04-18T19:00:10.1505866Z",
      "LastModifiedDateUtc": "2024-04-19T19:00:10.1505866Z",
      "_links": [
        {
          "rel": "detail",
          "href": "https://api.saasu.com/ItemTransfer/987654?FileId=123",
          "method": "GET",
          "title": null
        }
      ]
    }
  ],
  "_links": [
    {
      "rel": "self",
      "href": "https://api.saasu.com/ItemTransfers?FileId=123",
      "method": "GET",
      "title": null
    },
    {
      "rel": "next",
      "href": "https://api.saasu.com/ItemTransfers?FileId=123&Page=2&PageSize=25",
      "method": "GET",
      "title": null
    }
  ]
}

application/xml, text/xml

Sample:
<ItemTransfersListResponse xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
  <_links>
    <Link>
      <rel>self</rel>
      <href>https://api.saasu.com/ItemTransfers?FileId=123</href>
      <method>GET</method>
    </Link>
    <Link>
      <rel>next</rel>
      <href>https://api.saasu.com/ItemTransfers?FileId=123&amp;Page=2&amp;PageSize=25</href>
      <method>GET</method>
    </Link>
  </_links>
  <Transfers>
    <TransferSummary>
      <_links>
        <Link>
          <rel>detail</rel>
          <href>https://api.saasu.com/ItemTransfer/123456?FileId=123</href>
          <method>GET</method>
        </Link>
      </_links>
      <Id>123456</Id>
      <LastUpdatedId>AAAAAAAKgc=</LastUpdatedId>
      <Date>2016-10-01T00:00:00</Date>
      <Summary>Test Item transfer entry 1</Summary>
      <Tags>
        <string>Note</string>
        <string>Building Combo</string>
      </Tags>
      <RequiresFollowUp>false</RequiresFollowUp>
      <CreatedDateUtc>2024-04-18T19:00:10.1505866Z</CreatedDateUtc>
      <LastModifiedDateUtc>2024-04-19T19:00:10.1505866Z</LastModifiedDateUtc>
    </TransferSummary>
    <TransferSummary>
      <_links>
        <Link>
          <rel>detail</rel>
          <href>https://api.saasu.com/ItemTransfer/987654?FileId=123</href>
          <method>GET</method>
        </Link>
      </_links>
      <Id>987654</Id>
      <LastUpdatedId>AAAAAAAKgc=</LastUpdatedId>
      <Date>2016-09-01T00:00:00</Date>
      <Summary>Test Item transfer entry 2</Summary>
      <Tags>
        <string>Note</string>
      </Tags>
      <RequiresFollowUp>false</RequiresFollowUp>
      <CreatedDateUtc>2024-04-18T19:00:10.1505866Z</CreatedDateUtc>
      <LastModifiedDateUtc>2024-04-19T19:00:10.1505866Z</LastModifiedDateUtc>
    </TransferSummary>
  </Transfers>
</ItemTransfersListResponse>