Chilkat Online Tools

SQL Server / Creatio API / $top parameter

Back to Collection Items

-- Important: See this note about string length limitations for strings returned by sp_OAMethod calls.
--
CREATE PROCEDURE ChilkatSample
AS
BEGIN
    DECLARE @hr int
    DECLARE @iTmp0 int
    -- Important: Do not use nvarchar(max).  See the warning about using nvarchar(max).
    DECLARE @sTmp0 nvarchar(4000)
    -- This example assumes the Chilkat API to have been previously unlocked.
    -- See Global Unlock Sample for sample code.

    DECLARE @http int
    EXEC @hr = sp_OACreate 'Chilkat_9_5_0.Http', @http OUT
    IF @hr <> 0
    BEGIN
        PRINT 'Failed to create ActiveX component'
        RETURN
    END

    DECLARE @success int

    DECLARE @queryParams int
    EXEC @hr = sp_OACreate 'Chilkat_9_5_0.JsonObject', @queryParams OUT

    EXEC sp_OAMethod @queryParams, 'UpdateString', @success OUT, '$top', 'Value'

    EXEC sp_OAMethod @http, 'SetRequestHeader', NULL, 'ForceUseSession', 'true'
    EXEC sp_OAMethod @http, 'SetRequestHeader', NULL, 'BPMCSRF', '{{BPMCSRF}}'

    DECLARE @resp int
    EXEC sp_OAMethod @http, 'QuickRequestParams', @resp OUT, 'GET', 'https://myserver.com/0/ServiceModel/EntityDataService.svc/Collection1Collection', @queryParams
    EXEC sp_OAGetProperty @http, 'LastMethodSuccess', @iTmp0 OUT
    IF @iTmp0 = 0
      BEGIN
        EXEC sp_OAGetProperty @http, 'LastErrorText', @sTmp0 OUT
        PRINT @sTmp0
        EXEC @hr = sp_OADestroy @http
        EXEC @hr = sp_OADestroy @queryParams
        RETURN
      END

    DECLARE @sbResponseBody int
    EXEC @hr = sp_OACreate 'Chilkat_9_5_0.StringBuilder', @sbResponseBody OUT

    EXEC sp_OAMethod @resp, 'GetBodySb', @success OUT, @sbResponseBody
    EXEC @hr = sp_OADestroy @resp

    DECLARE @xmlResponse int
    EXEC @hr = sp_OACreate 'Chilkat_9_5_0.Xml', @xmlResponse OUT

    EXEC sp_OAMethod @xmlResponse, 'LoadSb', @success OUT, @sbResponseBody, 1
    EXEC sp_OAMethod @xmlResponse, 'GetXml', @sTmp0 OUT
    PRINT @sTmp0

    -- Sample XML response:
    -- (Sample code for parsing the XML response is shown below)

    -- <?xml version="1.0" encoding="utf-8"?>
    -- <feed xml:base="https://myserver.com/0/ServiceModel/EntityDataService.svc/" xmlns="http://www.w3.org/2005/Atom" xmlns:d="http://schemas.microsoft.com/ado/2007/08/dataservices" xmlns:m="http://schemas.microsoft.com/ado/2007/08/dataservices/metadata">
    --     <id>https://myserver.com/0/ServiceModel/EntityDataService.svc/EmployeeCollection</id>
    --     <title type="text">EmployeeCollection</title>
    --     <updated>2020-04-09T11:20:36Z</updated>
    --     <link rel="self" title="EmployeeCollection" href="EmployeeCollection"/>
    --     <entry>
    --         <id>https://myserver.com/0/ServiceModel/EntityDataService.svc/EmployeeCollection(guid'c31c7862-fe33-4a13-9bbc-0943fa08fd02')</id>
    --         <category term="Terrasoft.Configuration.Employee" scheme="http://schemas.microsoft.com/ado/2007/08/dataservices/scheme"/>
    --         <link rel="edit" title="Employee" href="EmployeeCollection(guid'c31c7862-fe33-4a13-9bbc-0943fa08fd02')"/>
    --         <link rel="http://schemas.microsoft.com/ado/2007/08/dataservices/related/CreatedBy" type="application/atom+xml;type=entry" title="CreatedBy" href="EmployeeCollection(guid'c31c7862-fe33-4a13-9bbc-0943fa08fd02')/CreatedBy"/>
    --         <link rel="http://schemas.microsoft.com/ado/2007/08/dataservices/related/ModifiedBy" type="application/atom+xml;type=entry" title="ModifiedBy" href="EmployeeCollection(guid'c31c7862-fe33-4a13-9bbc-0943fa08fd02')/ModifiedBy"/>
    --         <link rel="http://schemas.microsoft.com/ado/2007/08/dataservices/related/Contact" type="application/atom+xml;type=entry" title="Contact" href="EmployeeCollection(guid'c31c7862-fe33-4a13-9bbc-0943fa08fd02')/Contact"/>
    --         <link rel="http://schemas.microsoft.com/ado/2007/08/dataservices/related/OrgStructureUnitCollectionByHead" type="application/atom+xml;type=feed" title="OrgStructureUnitCollectionByHead" href="EmployeeCollection(guid'c31c7862-fe33-4a13-9bbc-0943fa08fd02')/OrgStructureUnitCollectionByHead"/>
    --         <link rel="http://schemas.microsoft.com/ado/2007/08/dataservices/related/OrgStructureUnit" type="application/atom+xml;type=entry" title="OrgStructureUnit" href="EmployeeCollection(guid'c31c7862-fe33-4a13-9bbc-0943fa08fd02')/OrgStructureUnit"/>
    --         <link rel="http://schemas.microsoft.com/ado/2007/08/dataservices/related/Job" type="application/atom+xml;type=entry" title="Job" href="EmployeeCollection(guid'c31c7862-fe33-4a13-9bbc-0943fa08fd02')/Job"/>
    --         <link rel="http://schemas.microsoft.com/ado/2007/08/dataservices/related/Owner" type="application/atom+xml;type=entry" title="Owner" href="EmployeeCollection(guid'c31c7862-fe33-4a13-9bbc-0943fa08fd02')/Owner"/>
    --         <link rel="http://schemas.microsoft.com/ado/2007/08/dataservices/related/ReasonForDismissal" type="application/atom+xml;type=entry" title="ReasonForDismissal" href="EmployeeCollection(guid'c31c7862-fe33-4a13-9bbc-0943fa08fd02')/ReasonForDismissal"/>
    --         <link rel="http://schemas.microsoft.com/ado/2007/08/dataservices/related/Account" type="application/atom+xml;type=entry" title="Account" href="EmployeeCollection(guid'c31c7862-fe33-4a13-9bbc-0943fa08fd02')/Account"/>
    --         <link rel="http://schemas.microsoft.com/ado/2007/08/dataservices/related/Manager" type="application/atom+xml;type=entry" title="Manager" href="EmployeeCollection(guid'c31c7862-fe33-4a13-9bbc-0943fa08fd02')/Manager"/>
    --         <link rel="http://schemas.microsoft.com/ado/2007/08/dataservices/related/EmployeeCollectionByManager" type="application/atom+xml;type=feed" title="EmployeeCollectionByManager" href="EmployeeCollection(guid'c31c7862-fe33-4a13-9bbc-0943fa08fd02')/EmployeeCollectionByManager"/>
    --         <link rel="http://schemas.microsoft.com/ado/2007/08/dataservices/related/EmployeeCareerCollectionByEmployee" type="application/atom+xml;type=feed" title="EmployeeCareerCollectionByEmployee" href="EmployeeCollection(guid'c31c7862-fe33-4a13-9bbc-0943fa08fd02')/EmployeeCareerCollectionByEmployee"/>
    --         <link rel="http://schemas.microsoft.com/ado/2007/08/dataservices/related/EmployeeFileCollectionByEmployee" type="application/atom+xml;type=feed" title="EmployeeFileCollectionByEmployee" href="EmployeeCollection(guid'c31c7862-fe33-4a13-9bbc-0943fa08fd02')/EmployeeFileCollectionByEmployee"/>
    --         <link rel="http://schemas.microsoft.com/ado/2007/08/dataservices/related/EmployeeInFolderCollectionByEmployee" type="application/atom+xml;type=feed" title="EmployeeInFolderCollectionByEmployee" href="EmployeeCollection(guid'c31c7862-fe33-4a13-9bbc-0943fa08fd02')/EmployeeInFolderCollectionByEmployee"/>
    --         <link rel="http://schemas.microsoft.com/ado/2007/08/dataservices/related/EmployeeInTagCollectionByEntity" type="application/atom+xml;type=feed" title="EmployeeInTagCollectionByEntity" href="EmployeeCollection(guid'c31c7862-fe33-4a13-9bbc-0943fa08fd02')/EmployeeInTagCollectionByEntity"/>
    --         <link rel="http://schemas.microsoft.com/ado/2007/08/dataservices/related/SalaryCollectionByEmployee" type="application/atom+xml;type=feed" title="SalaryCollectionByEmployee" href="EmployeeCollection(guid'c31c7862-fe33-4a13-9bbc-0943fa08fd02')/SalaryCollectionByEmployee"/>
    --         <link rel="http://schemas.microsoft.com/ado/2007/08/dataservices/related/VwEmployeesHierarchyCollectionByEmployee" type="application/atom+xml;type=feed" title="VwEmployeesHierarchyCollectionByEmployee" href="EmployeeCollection(guid'c31c7862-fe33-4a13-9bbc-0943fa08fd02')/VwEmployeesHierarchyCollectionByEmployee"/>
    --         <title/>
    --         <updated>2020-04-09T11:20:36Z</updated>
    --         <author>
    --             <name/>
    --         </author>
    --         <content type="application/xml">
    --             <m:properties>
    --                 <d:Id m:type="Edm.Guid">c31c7862-fe33-4a13-9bbc-0943fa08fd02</d:Id>
    --                 <d:Name>William Walker</d:Name>
    --                 <d:CreatedOn m:type="Edm.DateTime">2017-03-30T14:50:04Z</d:CreatedOn>
    --                 <d:CreatedById m:type="Edm.Guid">76929f8c-7e15-4c64-bdb0-adc62d383727</d:CreatedById>
    --                 <d:ModifiedOn m:type="Edm.DateTime">2020-02-14T06:30:46.234Z</d:ModifiedOn>
    --                 <d:ModifiedById m:type="Edm.Guid">410006e1-ca4e-4502-a9ec-e54d922d2c00</d:ModifiedById>
    --                 <d:ProcessListeners m:type="Edm.Int32">0</d:ProcessListeners>
    --                 <d:ContactId m:type="Edm.Guid">227aab3b-7c0c-4181-abf9-81585563ab23</d:ContactId>
    --                 <d:OrgStructureUnitId m:type="Edm.Guid">d436a9ce-9690-4415-9e03-e8061d7cabb5</d:OrgStructureUnitId>
    --                 <d:Notes/>
    --                 <d:JobId m:type="Edm.Guid">11d68189-ced6-df11-9b2a-001d60e938c6</d:JobId>
    --                 <d:FullJobTitle>Developer</d:FullJobTitle>
    --                 <d:OwnerId m:type="Edm.Guid">76929f8c-7e15-4c64-bdb0-adc62d383727</d:OwnerId>
    --                 <d:CareerStartDate m:type="Edm.DateTime">2019-09-08T00:00:00</d:CareerStartDate>
    --                 <d:CareerDueDate m:type="Edm.DateTime">0001-01-01T00:00:00</d:CareerDueDate>
    --                 <d:ProbationDueDate m:type="Edm.DateTime">2020-01-09T00:00:00</d:ProbationDueDate>
    --                 <d:ReasonForDismissalId m:type="Edm.Guid">00000000-0000-0000-0000-000000000000</d:ReasonForDismissalId>
    --                 <d:AccountId m:type="Edm.Guid">a0bf3e92-f36b-1410-0499-00155d043204</d:AccountId>
    --                 <d:ManagerId m:type="Edm.Guid">3e5bd47e-1ebd-41db-a9a6-a3560dcee3cb</d:ManagerId>
    --             </m:properties>
    --         </content>
    --     </entry>
    --     <entry>
    --         <id>https://myserver.com/0/ServiceModel/EntityDataService.svc/EmployeeCollection(guid'ddb34ecb-f009-484a-ad2b-0a49a475bdb2')</id>
    --         <category term="Terrasoft.Configuration.Employee" scheme="http://schemas.microsoft.com/ado/2007/08/dataservices/scheme"/>
    --         <link rel="edit" title="Employee" href="EmployeeCollection(guid'ddb34ecb-f009-484a-ad2b-0a49a475bdb2')"/>
    --         <link rel="http://schemas.microsoft.com/ado/2007/08/dataservices/related/CreatedBy" type="application/atom+xml;type=entry" title="CreatedBy" href="EmployeeCollection(guid'ddb34ecb-f009-484a-ad2b-0a49a475bdb2')/CreatedBy"/>
    --         <link rel="http://schemas.microsoft.com/ado/2007/08/dataservices/related/ModifiedBy" type="application/atom+xml;type=entry" title="ModifiedBy" href="EmployeeCollection(guid'ddb34ecb-f009-484a-ad2b-0a49a475bdb2')/ModifiedBy"/>
    --         <link rel="http://schemas.microsoft.com/ado/2007/08/dataservices/related/Contact" type="application/atom+xml;type=entry" title="Contact" href="EmployeeCollection(guid'ddb34ecb-f009-484a-ad2b-0a49a475bdb2')/Contact"/>
    --         <link rel="http://schemas.microsoft.com/ado/2007/08/dataservices/related/OrgStructureUnitCollectionByHead" type="application/atom+xml;type=feed" title="OrgStructureUnitCollectionByHead" href="EmployeeCollection(guid'ddb34ecb-f009-484a-ad2b-0a49a475bdb2')/OrgStructureUnitCollectionByHead"/>
    --         <link rel="http://schemas.microsoft.com/ado/2007/08/dataservices/related/OrgStructureUnit" type="application/atom+xml;type=entry" title="OrgStructureUnit" href="EmployeeCollection(guid'ddb34ecb-f009-484a-ad2b-0a49a475bdb2')/OrgStructureUnit"/>
    --         <link rel="http://schemas.microsoft.com/ado/2007/08/dataservices/related/Job" type="application/atom+xml;type=entry" title="Job" href="EmployeeCollection(guid'ddb34ecb-f009-484a-ad2b-0a49a475bdb2')/Job"/>
    --         <link rel="http://schemas.microsoft.com/ado/2007/08/dataservices/related/Owner" type="application/atom+xml;type=entry" title="Owner" href="EmployeeCollection(guid'ddb34ecb-f009-484a-ad2b-0a49a475bdb2')/Owner"/>
    --         <link rel="http://schemas.microsoft.com/ado/2007/08/dataservices/related/ReasonForDismissal" type="application/atom+xml;type=entry" title="ReasonForDismissal" href="EmployeeCollection(guid'ddb34ecb-f009-484a-ad2b-0a49a475bdb2')/ReasonForDismissal"/>
    --         <link rel="http://schemas.microsoft.com/ado/2007/08/dataservices/related/Account" type="application/atom+xml;type=entry" title="Account" href="EmployeeCollection(guid'ddb34ecb-f009-484a-ad2b-0a49a475bdb2')/Account"/>
    --         <link rel="http://schemas.microsoft.com/ado/2007/08/dataservices/related/Manager" type="application/atom+xml;type=entry" title="Manager" href="EmployeeCollection(guid'ddb34ecb-f009-484a-ad2b-0a49a475bdb2')/Manager"/>
    --         <link rel="http://schemas.microsoft.com/ado/2007/08/dataservices/related/EmployeeCollectionByManager" type="application/atom+xml;type=feed" title="EmployeeCollectionByManager" href="EmployeeCollection(guid'ddb34ecb-f009-484a-ad2b-0a49a475bdb2')/EmployeeCollectionByManager"/>
    --         <link rel="http://schemas.microsoft.com/ado/2007/08/dataservices/related/EmployeeCareerCollectionByEmployee" type="application/atom+xml;type=feed" title="EmployeeCareerCollectionByEmployee" href="EmployeeCollection(guid'ddb34ecb-f009-484a-ad2b-0a49a475bdb2')/EmployeeCareerCollectionByEmployee"/>
    --         <link rel="http://schemas.microsoft.com/ado/2007/08/dataservices/related/EmployeeFileCollectionByEmployee" type="application/atom+xml;type=feed" title="EmployeeFileCollectionByEmployee" href="EmployeeCollection(guid'ddb34ecb-f009-484a-ad2b-0a49a475bdb2')/EmployeeFileCollectionByEmployee"/>
    --         <link rel="http://schemas.microsoft.com/ado/2007/08/dataservices/related/EmployeeInFolderCollectionByEmployee" type="application/atom+xml;type=feed" title="EmployeeInFolderCollectionByEmployee" href="EmployeeCollection(guid'ddb34ecb-f009-484a-ad2b-0a49a475bdb2')/EmployeeInFolderCollectionByEmployee"/>
    --         <link rel="http://schemas.microsoft.com/ado/2007/08/dataservices/related/EmployeeInTagCollectionByEntity" type="application/atom+xml;type=feed" title="EmployeeInTagCollectionByEntity" href="EmployeeCollection(guid'ddb34ecb-f009-484a-ad2b-0a49a475bdb2')/EmployeeInTagCollectionByEntity"/>
    --         <link rel="http://schemas.microsoft.com/ado/2007/08/dataservices/related/SalaryCollectionByEmployee" type="application/atom+xml;type=feed" title="SalaryCollectionByEmployee" href="EmployeeCollection(guid'ddb34ecb-f009-484a-ad2b-0a49a475bdb2')/SalaryCollectionByEmployee"/>
    --         <link rel="http://schemas.microsoft.com/ado/2007/08/dataservices/related/VwEmployeesHierarchyCollectionByEmployee" type="application/atom+xml;type=feed" title="VwEmployeesHierarchyCollectionByEmployee" href="EmployeeCollection(guid'ddb34ecb-f009-484a-ad2b-0a49a475bdb2')/VwEmployeesHierarchyCollectionByEmployee"/>
    --         <title/>
    --         <updated>2020-04-09T11:20:36Z</updated>
    --         <author>
    --             <name/>
    --         </author>
    --         <content type="application/xml">
    --             <m:properties>
    --                 <d:Id m:type="Edm.Guid">ddb34ecb-f009-484a-ad2b-0a49a475bdb2</d:Id>
    --                 <d:Name>Timothy Sawyer</d:Name>
    --                 <d:CreatedOn m:type="Edm.DateTime">2017-03-30T14:54:20Z</d:CreatedOn>
    --                 <d:CreatedById m:type="Edm.Guid">76929f8c-7e15-4c64-bdb0-adc62d383727</d:CreatedById>
    --                 <d:ModifiedOn m:type="Edm.DateTime">2017-03-31T07:49:14Z</d:ModifiedOn>
    --                 <d:ModifiedById m:type="Edm.Guid">76929f8c-7e15-4c64-bdb0-adc62d383727</d:ModifiedById>
    --                 <d:ProcessListeners m:type="Edm.Int32">0</d:ProcessListeners>
    --                 <d:ContactId m:type="Edm.Guid">3822fb63-0e78-416f-a06b-3d18bd5e0448</d:ContactId>
    --                 <d:OrgStructureUnitId m:type="Edm.Guid">d436a9ce-9690-4415-9e03-e8061d7cabb5</d:OrgStructureUnitId>
    --                 <d:Notes/>
    --                 <d:JobId m:type="Edm.Guid">11d68189-ced6-df11-9b2a-001d60e938c6</d:JobId>
    --                 <d:FullJobTitle>Developer</d:FullJobTitle>
    --                 <d:OwnerId m:type="Edm.Guid">76929f8c-7e15-4c64-bdb0-adc62d383727</d:OwnerId>
    --                 <d:CareerStartDate m:type="Edm.DateTime">2016-12-04T00:00:00</d:CareerStartDate>
    --                 <d:CareerDueDate m:type="Edm.DateTime">2019-10-08T00:00:00</d:CareerDueDate>
    --                 <d:ProbationDueDate m:type="Edm.DateTime">0001-01-01T00:00:00</d:ProbationDueDate>
    --                 <d:ReasonForDismissalId m:type="Edm.Guid">f83b228a-f36b-1410-b783-00155d04320c</d:ReasonForDismissalId>
    --                 <d:AccountId m:type="Edm.Guid">e308b781-3c5b-4ecb-89ef-5c1ed4da488e</d:AccountId>
    --                 <d:ManagerId m:type="Edm.Guid">3e5bd47e-1ebd-41db-a9a6-a3560dcee3cb</d:ManagerId>
    --             </m:properties>
    --         </content>
    --     </entry>
    --     <entry>
    --         <id>https://myserver.com/0/ServiceModel/EntityDataService.svc/EmployeeCollection(guid'0f5feb72-bcc8-4b0c-bace-1cf7d3ee7755')</id>
    --         <category term="Terrasoft.Configuration.Employee" scheme="http://schemas.microsoft.com/ado/2007/08/dataservices/scheme"/>
    --         <link rel="edit" title="Employee" href="EmployeeCollection(guid'0f5feb72-bcc8-4b0c-bace-1cf7d3ee7755')"/>
    --         <link rel="http://schemas.microsoft.com/ado/2007/08/dataservices/related/CreatedBy" type="application/atom+xml;type=entry" title="CreatedBy" href="EmployeeCollection(guid'0f5feb72-bcc8-4b0c-bace-1cf7d3ee7755')/CreatedBy"/>
    --         <link rel="http://schemas.microsoft.com/ado/2007/08/dataservices/related/ModifiedBy" type="application/atom+xml;type=entry" title="ModifiedBy" href="EmployeeCollection(guid'0f5feb72-bcc8-4b0c-bace-1cf7d3ee7755')/ModifiedBy"/>
    --         <link rel="http://schemas.microsoft.com/ado/2007/08/dataservices/related/Contact" type="application/atom+xml;type=entry" title="Contact" href="EmployeeCollection(guid'0f5feb72-bcc8-4b0c-bace-1cf7d3ee7755')/Contact"/>
    --         <link rel="http://schemas.microsoft.com/ado/2007/08/dataservices/related/OrgStructureUnitCollectionByHead" type="application/atom+xml;type=feed" title="OrgStructureUnitCollectionByHead" href="EmployeeCollection(guid'0f5feb72-bcc8-4b0c-bace-1cf7d3ee7755')/OrgStructureUnitCollectionByHead"/>
    --         <link rel="http://schemas.microsoft.com/ado/2007/08/dataservices/related/OrgStructureUnit" type="application/atom+xml;type=entry" title="OrgStructureUnit" href="EmployeeCollection(guid'0f5feb72-bcc8-4b0c-bace-1cf7d3ee7755')/OrgStructureUnit"/>
    --         <link rel="http://schemas.microsoft.com/ado/2007/08/dataservices/related/Job" type="application/atom+xml;type=entry" title="Job" href="EmployeeCollection(guid'0f5feb72-bcc8-4b0c-bace-1cf7d3ee7755')/Job"/>
    --         <link rel="http://schemas.microsoft.com/ado/2007/08/dataservices/related/Owner" type="application/atom+xml;type=entry" title="Owner" href="EmployeeCollection(guid'0f5feb72-bcc8-4b0c-bace-1cf7d3ee7755')/Owner"/>
    --         <link rel="http://schemas.microsoft.com/ado/2007/08/dataservices/related/ReasonForDismissal" type="application/atom+xml;type=entry" title="ReasonForDismissal" href="EmployeeCollection(guid'0f5feb72-bcc8-4b0c-bace-1cf7d3ee7755')/ReasonForDismissal"/>
    --         <link rel="http://schemas.microsoft.com/ado/2007/08/dataservices/related/Account" type="application/atom+xml;type=entry" title="Account" href="EmployeeCollection(guid'0f5feb72-bcc8-4b0c-bace-1cf7d3ee7755')/Account"/>
    --         <link rel="http://schemas.microsoft.com/ado/2007/08/dataservices/related/Manager" type="application/atom+xml;type=entry" title="Manager" href="EmployeeCollection(guid'0f5feb72-bcc8-4b0c-bace-1cf7d3ee7755')/Manager"/>
    --         <link rel="http://schemas.microsoft.com/ado/2007/08/dataservices/related/EmployeeCollectionByManager" type="application/atom+xml;type=feed" title="EmployeeCollectionByManager" href="EmployeeCollection(guid'0f5feb72-bcc8-4b0c-bace-1cf7d3ee7755')/EmployeeCollectionByManager"/>
    --         <link rel="http://schemas.microsoft.com/ado/2007/08/dataservices/related/EmployeeCareerCollectionByEmployee" type="application/atom+xml;type=feed" title="EmployeeCareerCollectionByEmployee" href="EmployeeCollection(guid'0f5feb72-bcc8-4b0c-bace-1cf7d3ee7755')/EmployeeCareerCollectionByEmployee"/>
    --         <link rel="http://schemas.microsoft.com/ado/2007/08/dataservices/related/EmployeeFileCollectionByEmployee" type="application/atom+xml;type=feed" title="EmployeeFileCollectionByEmployee" href="EmployeeCollection(guid'0f5feb72-bcc8-4b0c-bace-1cf7d3ee7755')/EmployeeFileCollectionByEmployee"/>
    --         <link rel="http://schemas.microsoft.com/ado/2007/08/dataservices/related/EmployeeInFolderCollectionByEmployee" type="application/atom+xml;type=feed" title="EmployeeInFolderCollectionByEmployee" href="EmployeeCollection(guid'0f5feb72-bcc8-4b0c-bace-1cf7d3ee7755')/EmployeeInFolderCollectionByEmployee"/>
    --         <link rel="http://schemas.microsoft.com/ado/2007/08/dataservices/related/EmployeeInTagCollectionByEntity" type="application/atom+xml;type=feed" title="EmployeeInTagCollectionByEntity" href="EmployeeCollection(guid'0f5feb72-bcc8-4b0c-bace-1cf7d3ee7755')/EmployeeInTagCollectionByEntity"/>
    --         <link rel="http://schemas.microsoft.com/ado/2007/08/dataservices/related/SalaryCollectionByEmployee" type="application/atom+xml;type=feed" title="SalaryCollectionByEmployee" href="EmployeeCollection(guid'0f5feb72-bcc8-4b0c-bace-1cf7d3ee7755')/SalaryCollectionByEmployee"/>
    --         <link rel="http://schemas.microsoft.com/ado/2007/08/dataservices/related/VwEmployeesHierarchyCollectionByEmployee" type="application/atom+xml;type=feed" title="VwEmployeesHierarchyCollectionByEmployee" href="EmployeeCollection(guid'0f5feb72-bcc8-4b0c-bace-1cf7d3ee7755')/VwEmployeesHierarchyCollectionByEmployee"/>
    --         <title/>
    --         <updated>2020-04-09T11:20:36Z</updated>
    --         <author>
    --             <name/>
    --         </author>
    --         <content type="application/xml">
    --             <m:properties>
    --                 <d:Id m:type="Edm.Guid">0f5feb72-bcc8-4b0c-bace-1cf7d3ee7755</d:Id>
    --                 <d:Name>Symon Clarke</d:Name>
    --                 <d:CreatedOn m:type="Edm.DateTime">2017-03-30T14:47:15Z</d:CreatedOn>
    --                 <d:CreatedById m:type="Edm.Guid">76929f8c-7e15-4c64-bdb0-adc62d383727</d:CreatedById>
    --                 <d:ModifiedOn m:type="Edm.DateTime">2017-03-31T07:41:38Z</d:ModifiedOn>
    --                 <d:ModifiedById m:type="Edm.Guid">76929f8c-7e15-4c64-bdb0-adc62d383727</d:ModifiedById>
    --                 <d:ProcessListeners m:type="Edm.Int32">0</d:ProcessListeners>
    --                 <d:ContactId m:type="Edm.Guid">00e63875-323c-41a9-a795-e532e98d1563</d:ContactId>
    --                 <d:OrgStructureUnitId m:type="Edm.Guid">ef696860-5b18-42cc-ae96-5fcb927b370a</d:OrgStructureUnitId>
    --                 <d:Notes/>
    --                 <d:JobId m:type="Edm.Guid">33f48df9-56e6-df11-971b-001d60e938c6</d:JobId>
    --                 <d:FullJobTitle>Marketing manager</d:FullJobTitle>
    --                 <d:OwnerId m:type="Edm.Guid">76929f8c-7e15-4c64-bdb0-adc62d383727</d:OwnerId>
    --                 <d:CareerStartDate m:type="Edm.DateTime">2019-07-14T00:00:00</d:CareerStartDate>
    --                 <d:CareerDueDate m:type="Edm.DateTime">0001-01-01T00:00:00</d:CareerDueDate>
    --                 <d:ProbationDueDate m:type="Edm.DateTime">0001-01-01T00:00:00</d:ProbationDueDate>
    --                 <d:ReasonForDismissalId m:type="Edm.Guid">00000000-0000-0000-0000-000000000000</d:ReasonForDismissalId>
    --                 <d:AccountId m:type="Edm.Guid">e308b781-3c5b-4ecb-89ef-5c1ed4da488e</d:AccountId>
    --                 <d:ManagerId m:type="Edm.Guid">82c5f81c-4018-44f1-8dcb-738704fd21c4</d:ManagerId>
    --             </m:properties>
    --         </content>
    --     </entry>
    --     <entry>
    --         <id>https://myserver.com/0/ServiceModel/EntityDataService.svc/EmployeeCollection(guid'9842387d-069f-466c-9551-32cedbc16d90')</id>
    --         <category term="Terrasoft.Configuration.Employee" scheme="http://schemas.microsoft.com/ado/2007/08/dataservices/scheme"/>
    --         <link rel="edit" title="Employee" href="EmployeeCollection(guid'9842387d-069f-466c-9551-32cedbc16d90')"/>
    --         <link rel="http://schemas.microsoft.com/ado/2007/08/dataservices/related/CreatedBy" type="application/atom+xml;type=entry" title="CreatedBy" href="EmployeeCollection(guid'9842387d-069f-466c-9551-32cedbc16d90')/CreatedBy"/>
    --         <link rel="http://schemas.microsoft.com/ado/2007/08/dataservices/related/ModifiedBy" type="application/atom+xml;type=entry" title="ModifiedBy" href="EmployeeCollection(guid'9842387d-069f-466c-9551-32cedbc16d90')/ModifiedBy"/>
    --         <link rel="http://schemas.microsoft.com/ado/2007/08/dataservices/related/Contact" type="application/atom+xml;type=entry" title="Contact" href="EmployeeCollection(guid'9842387d-069f-466c-9551-32cedbc16d90')/Contact"/>
    --         <link rel="http://schemas.microsoft.com/ado/2007/08/dataservices/related/OrgStructureUnitCollectionByHead" type="application/atom+xml;type=feed" title="OrgStructureUnitCollectionByHead" href="EmployeeCollection(guid'9842387d-069f-466c-9551-32cedbc16d90')/OrgStructureUnitCollectionByHead"/>
    --         <link rel="http://schemas.microsoft.com/ado/2007/08/dataservices/related/OrgStructureUnit" type="application/atom+xml;type=entry" title="OrgStructureUnit" href="EmployeeCollection(guid'9842387d-069f-466c-9551-32cedbc16d90')/OrgStructureUnit"/>
    --         <link rel="http://schemas.microsoft.com/ado/2007/08/dataservices/related/Job" type="application/atom+xml;type=entry" title="Job" href="EmployeeCollection(guid'9842387d-069f-466c-9551-32cedbc16d90')/Job"/>
    --         <link rel="http://schemas.microsoft.com/ado/2007/08/dataservices/related/Owner" type="application/atom+xml;type=entry" title="Owner" href="EmployeeCollection(guid'9842387d-069f-466c-9551-32cedbc16d90')/Owner"/>
    --         <link rel="http://schemas.microsoft.com/ado/2007/08/dataservices/related/ReasonForDismissal" type="application/atom+xml;type=entry" title="ReasonForDismissal" href="EmployeeCollection(guid'9842387d-069f-466c-9551-32cedbc16d90')/ReasonForDismissal"/>
    --         <link rel="http://schemas.microsoft.com/ado/2007/08/dataservices/related/Account" type="application/atom+xml;type=entry" title="Account" href="EmployeeCollection(guid'9842387d-069f-466c-9551-32cedbc16d90')/Account"/>
    --         <link rel="http://schemas.microsoft.com/ado/2007/08/dataservices/related/Manager" type="application/atom+xml;type=entry" title="Manager" href="EmployeeCollection(guid'9842387d-069f-466c-9551-32cedbc16d90')/Manager"/>
    --         <link rel="http://schemas.microsoft.com/ado/2007/08/dataservices/related/EmployeeCollectionByManager" type="application/atom+xml;type=feed" title="EmployeeCollectionByManager" href="EmployeeCollection(guid'9842387d-069f-466c-9551-32cedbc16d90')/EmployeeCollectionByManager"/>
    --         <link rel="http://schemas.microsoft.com/ado/2007/08/dataservices/related/EmployeeCareerCollectionByEmployee" type="application/atom+xml;type=feed" title="EmployeeCareerCollectionByEmployee" href="EmployeeCollection(guid'9842387d-069f-466c-9551-32cedbc16d90')/EmployeeCareerCollectionByEmployee"/>
    --         <link rel="http://schemas.microsoft.com/ado/2007/08/dataservices/related/EmployeeFileCollectionByEmployee" type="application/atom+xml;type=feed" title="EmployeeFileCollectionByEmployee" href="EmployeeCollection(guid'9842387d-069f-466c-9551-32cedbc16d90')/EmployeeFileCollectionByEmployee"/>
    --         <link rel="http://schemas.microsoft.com/ado/2007/08/dataservices/related/EmployeeInFolderCollectionByEmployee" type="application/atom+xml;type=feed" title="EmployeeInFolderCollectionByEmployee" href="EmployeeCollection(guid'9842387d-069f-466c-9551-32cedbc16d90')/EmployeeInFolderCollectionByEmployee"/>
    --         <link rel="http://schemas.microsoft.com/ado/2007/08/dataservices/related/EmployeeInTagCollectionByEntity" type="application/atom+xml;type=feed" title="EmployeeInTagCollectionByEntity" href="EmployeeCollection(guid'9842387d-069f-466c-9551-32cedbc16d90')/EmployeeInTagCollectionByEntity"/>
    --         <link rel="http://schemas.microsoft.com/ado/2007/08/dataservices/related/SalaryCollectionByEmployee" type="application/atom+xml;type=feed" title="SalaryCollectionByEmployee" href="EmployeeCollection(guid'9842387d-069f-466c-9551-32cedbc16d90')/SalaryCollectionByEmployee"/>
    --         <link rel="http://schemas.microsoft.com/ado/2007/08/dataservices/related/VwEmployeesHierarchyCollectionByEmployee" type="application/atom+xml;type=feed" title="VwEmployeesHierarchyCollectionByEmployee" href="EmployeeCollection(guid'9842387d-069f-466c-9551-32cedbc16d90')/VwEmployeesHierarchyCollectionByEmployee"/>
    --         <title/>
    --         <updated>2020-04-09T11:20:36Z</updated>
    --         <author>
    --             <name/>
    --         </author>
    --         <content type="application/xml">
    --             <m:properties>
    --                 <d:Id m:type="Edm.Guid">9842387d-069f-466c-9551-32cedbc16d90</d:Id>
    --                 <d:Name>Mary King</d:Name>
    --                 <d:CreatedOn m:type="Edm.DateTime">2017-03-30T14:50:30Z</d:CreatedOn>
    --                 <d:CreatedById m:type="Edm.Guid">76929f8c-7e15-4c64-bdb0-adc62d383727</d:CreatedById>
    --                 <d:ModifiedOn m:type="Edm.DateTime">2017-03-31T07:27:18Z</d:ModifiedOn>
    --                 <d:ModifiedById m:type="Edm.Guid">76929f8c-7e15-4c64-bdb0-adc62d383727</d:ModifiedById>
    --                 <d:ProcessListeners m:type="Edm.Int32">0</d:ProcessListeners>
    --                 <d:ContactId m:type="Edm.Guid">cad50d15-f28d-49fc-aa79-21615ac35b86</d:ContactId>
    --                 <d:OrgStructureUnitId m:type="Edm.Guid">43172897-fbd6-4bc1-b81b-55964ab558e6</d:OrgStructureUnitId>
    --                 <d:Notes/>
    --                 <d:JobId m:type="Edm.Guid">955472f0-56e6-df11-971b-001d60e938c6</d:JobId>
    --                 <d:FullJobTitle>Customer manager</d:FullJobTitle>
    --                 <d:OwnerId m:type="Edm.Guid">76929f8c-7e15-4c64-bdb0-adc62d383727</d:OwnerId>
    --                 <d:CareerStartDate m:type="Edm.DateTime">2019-04-07T00:00:00</d:CareerStartDate>
    --                 <d:CareerDueDate m:type="Edm.DateTime">0001-01-01T00:00:00</d:CareerDueDate>
    --                 <d:ProbationDueDate m:type="Edm.DateTime">0001-01-01T00:00:00</d:ProbationDueDate>
    --                 <d:ReasonForDismissalId m:type="Edm.Guid">00000000-0000-0000-0000-000000000000</d:ReasonForDismissalId>
    --                 <d:AccountId m:type="Edm.Guid">e308b781-3c5b-4ecb-89ef-5c1ed4da488e</d:AccountId>
    --                 <d:ManagerId m:type="Edm.Guid">e17c9cd6-262d-481d-86a9-f09a82984e0e</d:ManagerId>
    --             </m:properties>
    --         </content>
    --     </entry>
    --     <entry>
    --         <id>https://myserver.com/0/ServiceModel/EntityDataService.svc/EmployeeCollection(guid'f11df686-a557-4790-99e5-36ec8dcd2f00')</id>
    --         <category term="Terrasoft.Configuration.Employee" scheme="http://schemas.microsoft.com/ado/2007/08/dataservices/scheme"/>
    --         <link rel="edit" title="Employee" href="EmployeeCollection(guid'f11df686-a557-4790-99e5-36ec8dcd2f00')"/>
    --         <link rel="http://schemas.microsoft.com/ado/2007/08/dataservices/related/CreatedBy" type="application/atom+xml;type=entry" title="CreatedBy" href="EmployeeCollection(guid'f11df686-a557-4790-99e5-36ec8dcd2f00')/CreatedBy"/>
    --         <link rel="http://schemas.microsoft.com/ado/2007/08/dataservices/related/ModifiedBy" type="application/atom+xml;type=entry" title="ModifiedBy" href="EmployeeCollection(guid'f11df686-a557-4790-99e5-36ec8dcd2f00')/ModifiedBy"/>
    --         <link rel="http://schemas.microsoft.com/ado/2007/08/dataservices/related/Contact" type="application/atom+xml;type=entry" title="Contact" href="EmployeeCollection(guid'f11df686-a557-4790-99e5-36ec8dcd2f00')/Contact"/>
    --         <link rel="http://schemas.microsoft.com/ado/2007/08/dataservices/related/OrgStructureUnitCollectionByHead" type="application/atom+xml;type=feed" title="OrgStructureUnitCollectionByHead" href="EmployeeCollection(guid'f11df686-a557-4790-99e5-36ec8dcd2f00')/OrgStructureUnitCollectionByHead"/>
    --         <link rel="http://schemas.microsoft.com/ado/2007/08/dataservices/related/OrgStructureUnit" type="application/atom+xml;type=entry" title="OrgStructureUnit" href="EmployeeCollection(guid'f11df686-a557-4790-99e5-36ec8dcd2f00')/OrgStructureUnit"/>
    --         <link rel="http://schemas.microsoft.com/ado/2007/08/dataservices/related/Job" type="application/atom+xml;type=entry" title="Job" href="EmployeeCollection(guid'f11df686-a557-4790-99e5-36ec8dcd2f00')/Job"/>
    --         <link rel="http://schemas.microsoft.com/ado/2007/08/dataservices/related/Owner" type="application/atom+xml;type=entry" title="Owner" href="EmployeeCollection(guid'f11df686-a557-4790-99e5-36ec8dcd2f00')/Owner"/>
    --         <link rel="http://schemas.microsoft.com/ado/2007/08/dataservices/related/ReasonForDismissal" type="application/atom+xml;type=entry" title="ReasonForDismissal" href="EmployeeCollection(guid'f11df686-a557-4790-99e5-36ec8dcd2f00')/ReasonForDismissal"/>
    --         <link rel="http://schemas.microsoft.com/ado/2007/08/dataservices/related/Account" type="application/atom+xml;type=entry" title="Account" href="EmployeeCollection(guid'f11df686-a557-4790-99e5-36ec8dcd2f00')/Account"/>
    --         <link rel="http://schemas.microsoft.com/ado/2007/08/dataservices/related/Manager" type="application/atom+xml;type=entry" title="Manager" href="EmployeeCollection(guid'f11df686-a557-4790-99e5-36ec8dcd2f00')/Manager"/>
    --         <link rel="http://schemas.microsoft.com/ado/2007/08/dataservices/related/EmployeeCollectionByManager" type="application/atom+xml;type=feed" title="EmployeeCollectionByManager" href="EmployeeCollection(guid'f11df686-a557-4790-99e5-36ec8dcd2f00')/EmployeeCollectionByManager"/>
    --         <link rel="http://schemas.microsoft.com/ado/2007/08/dataservices/related/EmployeeCareerCollectionByEmployee" type="application/atom+xml;type=feed" title="EmployeeCareerCollectionByEmployee" href="EmployeeCollection(guid'f11df686-a557-4790-99e5-36ec8dcd2f00')/EmployeeCareerCollectionByEmployee"/>
    --         <link rel="http://schemas.microsoft.com/ado/2007/08/dataservices/related/EmployeeFileCollectionByEmployee" type="application/atom+xml;type=feed" title="EmployeeFileCollectionByEmployee" href="EmployeeCollection(guid'f11df686-a557-4790-99e5-36ec8dcd2f00')/EmployeeFileCollectionByEmployee"/>
    --         <link rel="http://schemas.microsoft.com/ado/2007/08/dataservices/related/EmployeeInFolderCollectionByEmployee" type="application/atom+xml;type=feed" title="EmployeeInFolderCollectionByEmployee" href="EmployeeCollection(guid'f11df686-a557-4790-99e5-36ec8dcd2f00')/EmployeeInFolderCollectionByEmployee"/>
    --         <link rel="http://schemas.microsoft.com/ado/2007/08/dataservices/related/EmployeeInTagCollectionByEntity" type="application/atom+xml;type=feed" title="EmployeeInTagCollectionByEntity" href="EmployeeCollection(guid'f11df686-a557-4790-99e5-36ec8dcd2f00')/EmployeeInTagCollectionByEntity"/>
    --         <link rel="http://schemas.microsoft.com/ado/2007/08/dataservices/related/SalaryCollectionByEmployee" type="application/atom+xml;type=feed" title="SalaryCollectionByEmployee" href="EmployeeCollection(guid'f11df686-a557-4790-99e5-36ec8dcd2f00')/SalaryCollectionByEmployee"/>
    --         <link rel="http://schemas.microsoft.com/ado/2007/08/dataservices/related/VwEmployeesHierarchyCollectionByEmployee" type="application/atom+xml;type=feed" title="VwEmployeesHierarchyCollectionByEmployee" href="EmployeeCollection(guid'f11df686-a557-4790-99e5-36ec8dcd2f00')/VwEmployeesHierarchyCollectionByEmployee"/>
    --         <title/>
    --         <updated>2020-04-09T11:20:36Z</updated>
    --         <author>
    --             <name/>
    --         </author>
    --         <content type="application/xml">
    --             <m:properties>
    --                 <d:Id m:type="Edm.Guid">f11df686-a557-4790-99e5-36ec8dcd2f00</d:Id>
    --                 <d:Name>Sarah M. Richards</d:Name>
    --                 <d:CreatedOn m:type="Edm.DateTime">2017-03-30T14:24:32Z</d:CreatedOn>
    --                 <d:CreatedById m:type="Edm.Guid">76929f8c-7e15-4c64-bdb0-adc62d383727</d:CreatedById>
    --                 <d:ModifiedOn m:type="Edm.DateTime">2017-03-31T07:37:37Z</d:ModifiedOn>
    --                 <d:ModifiedById m:type="Edm.Guid">76929f8c-7e15-4c64-bdb0-adc62d383727</d:ModifiedById>
    --                 <d:ProcessListeners m:type="Edm.Int32">0</d:ProcessListeners>
    --                 <d:ContactId m:type="Edm.Guid">f1edc225-4312-45e9-90fb-a63edbe9294f</d:ContactId>
    --                 <d:OrgStructureUnitId m:type="Edm.Guid">60c294d4-b4f7-4809-b061-1e8016264edc</d:OrgStructureUnitId>
    --                 <d:Notes/>
    --                 <d:JobId m:type="Edm.Guid">ca49a603-57e6-df11-971b-001d60e938c6</d:JobId>
    --                 <d:FullJobTitle>Head of accounting department</d:FullJobTitle>
    --                 <d:OwnerId m:type="Edm.Guid">76929f8c-7e15-4c64-bdb0-adc62d383727</d:OwnerId>
    --                 <d:CareerStartDate m:type="Edm.DateTime">2019-01-08T00:00:00</d:CareerStartDate>
    --                 <d:CareerDueDate m:type="Edm.DateTime">0001-01-01T00:00:00</d:CareerDueDate>
    --                 <d:ProbationDueDate m:type="Edm.DateTime">0001-01-01T00:00:00</d:ProbationDueDate>
    --                 <d:ReasonForDismissalId m:type="Edm.Guid">00000000-0000-0000-0000-000000000000</d:ReasonForDismissalId>
    --                 <d:AccountId m:type="Edm.Guid">e308b781-3c5b-4ecb-89ef-5c1ed4da488e</d:AccountId>
    --                 <d:ManagerId m:type="Edm.Guid">26fffdc9-a184-47a7-a6b6-cafc9fe58327</d:ManagerId>
    --             </m:properties>
    --         </content>
    --     </entry>
    -- </feed>

    -- Sample code for parsing the XML response...
    -- Use this online tool to generate parsing code from sample XML: Generate XML Parsing Code

    DECLARE @category_term nvarchar(4000)

    DECLARE @category_scheme nvarchar(4000)

    DECLARE @j int

    DECLARE @count_j int

    DECLARE @link_type nvarchar(4000)

    DECLARE @content_type nvarchar(4000)

    DECLARE @d_Id_m_type nvarchar(4000)

    DECLARE @d_Id nvarchar(4000)

    DECLARE @d_Name nvarchar(4000)

    DECLARE @d_CreatedOn_m_type nvarchar(4000)

    DECLARE @d_CreatedOn nvarchar(4000)

    DECLARE @d_CreatedById_m_type nvarchar(4000)

    DECLARE @d_CreatedById nvarchar(4000)

    DECLARE @d_ModifiedOn_m_type nvarchar(4000)

    DECLARE @d_ModifiedOn nvarchar(4000)

    DECLARE @d_ModifiedById_m_type nvarchar(4000)

    DECLARE @d_ModifiedById nvarchar(4000)

    DECLARE @d_ProcessListeners_m_type nvarchar(4000)

    DECLARE @d_ProcessListeners int

    DECLARE @d_ContactId_m_type nvarchar(4000)

    DECLARE @d_ContactId nvarchar(4000)

    DECLARE @d_OrgStructureUnitId_m_type nvarchar(4000)

    DECLARE @d_OrgStructureUnitId nvarchar(4000)

    DECLARE @d_JobId_m_type nvarchar(4000)

    DECLARE @d_JobId nvarchar(4000)

    DECLARE @d_FullJobTitle nvarchar(4000)

    DECLARE @d_OwnerId_m_type nvarchar(4000)

    DECLARE @d_OwnerId nvarchar(4000)

    DECLARE @d_CareerStartDate_m_type nvarchar(4000)

    DECLARE @d_CareerStartDate nvarchar(4000)

    DECLARE @d_CareerDueDate_m_type nvarchar(4000)

    DECLARE @d_CareerDueDate nvarchar(4000)

    DECLARE @d_ProbationDueDate_m_type nvarchar(4000)

    DECLARE @d_ProbationDueDate nvarchar(4000)

    DECLARE @d_ReasonForDismissalId_m_type nvarchar(4000)

    DECLARE @d_ReasonForDismissalId nvarchar(4000)

    DECLARE @d_AccountId_m_type nvarchar(4000)

    DECLARE @d_AccountId nvarchar(4000)

    DECLARE @d_ManagerId_m_type nvarchar(4000)

    DECLARE @d_ManagerId nvarchar(4000)

    DECLARE @feed_xml_base nvarchar(4000)
    EXEC sp_OAMethod @xmlResponse, 'GetAttrValue', @feed_xml_base OUT, 'xml:base'
    DECLARE @feed_xmlns nvarchar(4000)
    EXEC sp_OAMethod @xmlResponse, 'GetAttrValue', @feed_xmlns OUT, 'xmlns'
    DECLARE @feed_xmlns_d nvarchar(4000)
    EXEC sp_OAMethod @xmlResponse, 'GetAttrValue', @feed_xmlns_d OUT, 'xmlns:d'
    DECLARE @feed_xmlns_m nvarchar(4000)
    EXEC sp_OAMethod @xmlResponse, 'GetAttrValue', @feed_xmlns_m OUT, 'xmlns:m'
    DECLARE @id nvarchar(4000)
    EXEC sp_OAMethod @xmlResponse, 'GetChildContent', @id OUT, 'id'
    DECLARE @title_type nvarchar(4000)
    EXEC sp_OAMethod @xmlResponse, 'ChilkatPath', @title_type OUT, 'title|(type)'
    DECLARE @title nvarchar(4000)
    EXEC sp_OAMethod @xmlResponse, 'GetChildContent', @title OUT, 'title'
    DECLARE @updated nvarchar(4000)
    EXEC sp_OAMethod @xmlResponse, 'GetChildContent', @updated OUT, 'updated'
    DECLARE @link_rel nvarchar(4000)
    EXEC sp_OAMethod @xmlResponse, 'ChilkatPath', @link_rel OUT, 'link|(rel)'
    DECLARE @link_title nvarchar(4000)
    EXEC sp_OAMethod @xmlResponse, 'ChilkatPath', @link_title OUT, 'link|(title)'
    DECLARE @link_href nvarchar(4000)
    EXEC sp_OAMethod @xmlResponse, 'ChilkatPath', @link_href OUT, 'link|(href)'
    DECLARE @i int
    SELECT @i = 0
    DECLARE @count_i int
    EXEC sp_OAMethod @xmlResponse, 'NumChildrenHavingTag', @count_i OUT, 'entry'
    WHILE @i < @count_i
      BEGIN
        EXEC sp_OASetProperty @xmlResponse, 'I', @i
        EXEC sp_OAMethod @xmlResponse, 'GetChildContent', @id OUT, 'entry[i]|id'
        EXEC sp_OAMethod @xmlResponse, 'ChilkatPath', @category_term OUT, 'entry[i]|category|(term)'
        EXEC sp_OAMethod @xmlResponse, 'ChilkatPath', @category_scheme OUT, 'entry[i]|category|(scheme)'
        SELECT @j = 0
        EXEC sp_OAMethod @xmlResponse, 'NumChildrenHavingTag', @count_j OUT, 'entry[i]|link'
        WHILE @j < @count_j
          BEGIN
            EXEC sp_OASetProperty @xmlResponse, 'J', @j
            EXEC sp_OAMethod @xmlResponse, 'ChilkatPath', @link_rel OUT, 'entry[i]|link[j]|(rel)'
            EXEC sp_OAMethod @xmlResponse, 'ChilkatPath', @link_title OUT, 'entry[i]|link[j]|(title)'
            EXEC sp_OAMethod @xmlResponse, 'ChilkatPath', @link_href OUT, 'entry[i]|link[j]|(href)'
            EXEC sp_OAMethod @xmlResponse, 'ChilkatPath', @link_type OUT, 'entry[i]|link[j]|(type)'
            SELECT @j = @j + 1
          END
        EXEC sp_OAMethod @xmlResponse, 'GetChildContent', @updated OUT, 'entry[i]|updated'
        EXEC sp_OAMethod @xmlResponse, 'ChilkatPath', @content_type OUT, 'entry[i]|content|(type)'
        EXEC sp_OAMethod @xmlResponse, 'ChilkatPath', @d_Id_m_type OUT, 'entry[i]|content|m:properties|d:Id|(m:type)'
        EXEC sp_OAMethod @xmlResponse, 'GetChildContent', @d_Id OUT, 'entry[i]|content|m:properties|d:Id'
        EXEC sp_OAMethod @xmlResponse, 'GetChildContent', @d_Name OUT, 'entry[i]|content|m:properties|d:Name'
        EXEC sp_OAMethod @xmlResponse, 'ChilkatPath', @d_CreatedOn_m_type OUT, 'entry[i]|content|m:properties|d:CreatedOn|(m:type)'
        EXEC sp_OAMethod @xmlResponse, 'GetChildContent', @d_CreatedOn OUT, 'entry[i]|content|m:properties|d:CreatedOn'
        EXEC sp_OAMethod @xmlResponse, 'ChilkatPath', @d_CreatedById_m_type OUT, 'entry[i]|content|m:properties|d:CreatedById|(m:type)'
        EXEC sp_OAMethod @xmlResponse, 'GetChildContent', @d_CreatedById OUT, 'entry[i]|content|m:properties|d:CreatedById'
        EXEC sp_OAMethod @xmlResponse, 'ChilkatPath', @d_ModifiedOn_m_type OUT, 'entry[i]|content|m:properties|d:ModifiedOn|(m:type)'
        EXEC sp_OAMethod @xmlResponse, 'GetChildContent', @d_ModifiedOn OUT, 'entry[i]|content|m:properties|d:ModifiedOn'
        EXEC sp_OAMethod @xmlResponse, 'ChilkatPath', @d_ModifiedById_m_type OUT, 'entry[i]|content|m:properties|d:ModifiedById|(m:type)'
        EXEC sp_OAMethod @xmlResponse, 'GetChildContent', @d_ModifiedById OUT, 'entry[i]|content|m:properties|d:ModifiedById'
        EXEC sp_OAMethod @xmlResponse, 'ChilkatPath', @d_ProcessListeners_m_type OUT, 'entry[i]|content|m:properties|d:ProcessListeners|(m:type)'
        EXEC sp_OAMethod @xmlResponse, 'GetChildIntValue', @d_ProcessListeners OUT, 'entry[i]|content|m:properties|d:ProcessListeners'
        EXEC sp_OAMethod @xmlResponse, 'ChilkatPath', @d_ContactId_m_type OUT, 'entry[i]|content|m:properties|d:ContactId|(m:type)'
        EXEC sp_OAMethod @xmlResponse, 'GetChildContent', @d_ContactId OUT, 'entry[i]|content|m:properties|d:ContactId'
        EXEC sp_OAMethod @xmlResponse, 'ChilkatPath', @d_OrgStructureUnitId_m_type OUT, 'entry[i]|content|m:properties|d:OrgStructureUnitId|(m:type)'
        EXEC sp_OAMethod @xmlResponse, 'GetChildContent', @d_OrgStructureUnitId OUT, 'entry[i]|content|m:properties|d:OrgStructureUnitId'
        EXEC sp_OAMethod @xmlResponse, 'ChilkatPath', @d_JobId_m_type OUT, 'entry[i]|content|m:properties|d:JobId|(m:type)'
        EXEC sp_OAMethod @xmlResponse, 'GetChildContent', @d_JobId OUT, 'entry[i]|content|m:properties|d:JobId'
        EXEC sp_OAMethod @xmlResponse, 'GetChildContent', @d_FullJobTitle OUT, 'entry[i]|content|m:properties|d:FullJobTitle'
        EXEC sp_OAMethod @xmlResponse, 'ChilkatPath', @d_OwnerId_m_type OUT, 'entry[i]|content|m:properties|d:OwnerId|(m:type)'
        EXEC sp_OAMethod @xmlResponse, 'GetChildContent', @d_OwnerId OUT, 'entry[i]|content|m:properties|d:OwnerId'
        EXEC sp_OAMethod @xmlResponse, 'ChilkatPath', @d_CareerStartDate_m_type OUT, 'entry[i]|content|m:properties|d:CareerStartDate|(m:type)'
        EXEC sp_OAMethod @xmlResponse, 'GetChildContent', @d_CareerStartDate OUT, 'entry[i]|content|m:properties|d:CareerStartDate'
        EXEC sp_OAMethod @xmlResponse, 'ChilkatPath', @d_CareerDueDate_m_type OUT, 'entry[i]|content|m:properties|d:CareerDueDate|(m:type)'
        EXEC sp_OAMethod @xmlResponse, 'GetChildContent', @d_CareerDueDate OUT, 'entry[i]|content|m:properties|d:CareerDueDate'
        EXEC sp_OAMethod @xmlResponse, 'ChilkatPath', @d_ProbationDueDate_m_type OUT, 'entry[i]|content|m:properties|d:ProbationDueDate|(m:type)'
        EXEC sp_OAMethod @xmlResponse, 'GetChildContent', @d_ProbationDueDate OUT, 'entry[i]|content|m:properties|d:ProbationDueDate'
        EXEC sp_OAMethod @xmlResponse, 'ChilkatPath', @d_ReasonForDismissalId_m_type OUT, 'entry[i]|content|m:properties|d:ReasonForDismissalId|(m:type)'
        EXEC sp_OAMethod @xmlResponse, 'GetChildContent', @d_ReasonForDismissalId OUT, 'entry[i]|content|m:properties|d:ReasonForDismissalId'
        EXEC sp_OAMethod @xmlResponse, 'ChilkatPath', @d_AccountId_m_type OUT, 'entry[i]|content|m:properties|d:AccountId|(m:type)'
        EXEC sp_OAMethod @xmlResponse, 'GetChildContent', @d_AccountId OUT, 'entry[i]|content|m:properties|d:AccountId'
        EXEC sp_OAMethod @xmlResponse, 'ChilkatPath', @d_ManagerId_m_type OUT, 'entry[i]|content|m:properties|d:ManagerId|(m:type)'
        EXEC sp_OAMethod @xmlResponse, 'GetChildContent', @d_ManagerId OUT, 'entry[i]|content|m:properties|d:ManagerId'
        SELECT @i = @i + 1
      END

    EXEC @hr = sp_OADestroy @http
    EXEC @hr = sp_OADestroy @queryParams
    EXEC @hr = sp_OADestroy @sbResponseBody
    EXEC @hr = sp_OADestroy @xmlResponse


END
GO

Curl Command

curl -G -d "$top=Value"
	-H "ForceUseSession: true"
	-H "BPMCSRF: {{BPMCSRF}}"
https://myserver.com/0/ServiceModel/EntityDataService.svc/Collection1Collection

Postman Collection Item JSON

{
  "name": "$top parameter",
  "request": {
    "method": "GET",
    "header": [
      {
        "key": "ForceUseSession",
        "type": "text",
        "value": "true"
      },
      {
        "key": "BPMCSRF",
        "type": "text",
        "value": "{{BPMCSRF}}"
      }
    ],
    "url": {
      "raw": "{{BaseURI}}/0/ServiceModel/EntityDataService.svc/{{CollectionName1}}Collection?$top={{Value}}",
      "host": [
        "{{BaseURI}}"
      ],
      "path": [
        "0",
        "ServiceModel",
        "EntityDataService.svc",
        "{{CollectionName1}}Collection"
      ],
      "query": [
        {
          "key": "$top",
          "value": "{{Value}}"
        }
      ]
    },
    "description": "Request for getting a set number of object collection instances via the [$top](https://www.odata.org/documentation/odata-version-3-0/odata-version-3-0-core-protocol/#thetopsystemqueryoption) parameter."
  },
  "response": [
    {
      "name": "[200] Gets a set number of object collection instances",
      "originalRequest": {
        "method": "GET",
        "header": [
          {
            "key": "ForceUseSession",
            "type": "text",
            "value": "true"
          },
          {
            "key": "BPMCSRF",
            "type": "text",
            "value": "{{BPMCSRF}}"
          }
        ],
        "url": {
          "raw": "https://myserver.com/0/ServiceModel/EntityDataService.svc/EmployeeCollection?$top=5",
          "protocol": "https",
          "host": [
            "myserver",
            "com"
          ],
          "path": [
            "0",
            "ServiceModel",
            "EntityDataService.svc",
            "EmployeeCollection"
          ],
          "query": [
            {
              "key": "$top",
              "value": "5"
            }
          ]
        }
      },
      "status": "OK",
      "code": 200,
      "_postman_previewlanguage": "xml",
      "header": [
        {
          "key": "Cache-Control",
          "value": "no-cache"
        },
        {
          "key": "Content-Type",
          "value": "application/atom+xml;type=feed;charset=utf-8"
        },
        {
          "key": "Server",
          "value": "Microsoft-IIS/10.0"
        },
        {
          "key": "X-Content-Type-Options",
          "value": "nosniff"
        },
        {
          "key": "X-Content-Type-Options",
          "value": "nosniff"
        },
        {
          "key": "DataServiceVersion",
          "value": "2.0;"
        },
        {
          "key": "X-AspNet-Version",
          "value": "4.0.30319"
        },
        {
          "key": "X-Powered-By",
          "value": "ASP.NET"
        },
        {
          "key": "X-Frame-Options",
          "value": "SAMEORIGIN"
        },
        {
          "key": "Date",
          "value": "Thu, 09 Apr 2020 11:20:36 GMT"
        },
        {
          "key": "Content-Length",
          "value": "31688"
        }
      ],
      "cookie": [
      ],
      "body": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<feed xml:base=\"https://myserver.com/0/ServiceModel/EntityDataService.svc/\" xmlns=\"http://www.w3.org/2005/Atom\" xmlns:d=\"http://schemas.microsoft.com/ado/2007/08/dataservices\" xmlns:m=\"http://schemas.microsoft.com/ado/2007/08/dataservices/metadata\">\n    <id>https://myserver.com/0/ServiceModel/EntityDataService.svc/EmployeeCollection</id>\n    <title type=\"text\">EmployeeCollection</title>\n    <updated>2020-04-09T11:20:36Z</updated>\n    <link rel=\"self\" title=\"EmployeeCollection\" href=\"EmployeeCollection\" />\n    <entry>\n        <id>https://myserver.com/0/ServiceModel/EntityDataService.svc/EmployeeCollection(guid'c31c7862-fe33-4a13-9bbc-0943fa08fd02')</id>\n        <category term=\"Terrasoft.Configuration.Employee\" scheme=\"http://schemas.microsoft.com/ado/2007/08/dataservices/scheme\" />\n        <link rel=\"edit\" title=\"Employee\" href=\"EmployeeCollection(guid'c31c7862-fe33-4a13-9bbc-0943fa08fd02')\" />\n        <link rel=\"http://schemas.microsoft.com/ado/2007/08/dataservices/related/CreatedBy\" type=\"application/atom+xml;type=entry\" title=\"CreatedBy\" href=\"EmployeeCollection(guid'c31c7862-fe33-4a13-9bbc-0943fa08fd02')/CreatedBy\" />\n        <link rel=\"http://schemas.microsoft.com/ado/2007/08/dataservices/related/ModifiedBy\" type=\"application/atom+xml;type=entry\" title=\"ModifiedBy\" href=\"EmployeeCollection(guid'c31c7862-fe33-4a13-9bbc-0943fa08fd02')/ModifiedBy\" />\n        <link rel=\"http://schemas.microsoft.com/ado/2007/08/dataservices/related/Contact\" type=\"application/atom+xml;type=entry\" title=\"Contact\" href=\"EmployeeCollection(guid'c31c7862-fe33-4a13-9bbc-0943fa08fd02')/Contact\" />\n        <link rel=\"http://schemas.microsoft.com/ado/2007/08/dataservices/related/OrgStructureUnitCollectionByHead\" type=\"application/atom+xml;type=feed\" title=\"OrgStructureUnitCollectionByHead\" href=\"EmployeeCollection(guid'c31c7862-fe33-4a13-9bbc-0943fa08fd02')/OrgStructureUnitCollectionByHead\" />\n        <link rel=\"http://schemas.microsoft.com/ado/2007/08/dataservices/related/OrgStructureUnit\" type=\"application/atom+xml;type=entry\" title=\"OrgStructureUnit\" href=\"EmployeeCollection(guid'c31c7862-fe33-4a13-9bbc-0943fa08fd02')/OrgStructureUnit\" />\n        <link rel=\"http://schemas.microsoft.com/ado/2007/08/dataservices/related/Job\" type=\"application/atom+xml;type=entry\" title=\"Job\" href=\"EmployeeCollection(guid'c31c7862-fe33-4a13-9bbc-0943fa08fd02')/Job\" />\n        <link rel=\"http://schemas.microsoft.com/ado/2007/08/dataservices/related/Owner\" type=\"application/atom+xml;type=entry\" title=\"Owner\" href=\"EmployeeCollection(guid'c31c7862-fe33-4a13-9bbc-0943fa08fd02')/Owner\" />\n        <link rel=\"http://schemas.microsoft.com/ado/2007/08/dataservices/related/ReasonForDismissal\" type=\"application/atom+xml;type=entry\" title=\"ReasonForDismissal\" href=\"EmployeeCollection(guid'c31c7862-fe33-4a13-9bbc-0943fa08fd02')/ReasonForDismissal\" />\n        <link rel=\"http://schemas.microsoft.com/ado/2007/08/dataservices/related/Account\" type=\"application/atom+xml;type=entry\" title=\"Account\" href=\"EmployeeCollection(guid'c31c7862-fe33-4a13-9bbc-0943fa08fd02')/Account\" />\n        <link rel=\"http://schemas.microsoft.com/ado/2007/08/dataservices/related/Manager\" type=\"application/atom+xml;type=entry\" title=\"Manager\" href=\"EmployeeCollection(guid'c31c7862-fe33-4a13-9bbc-0943fa08fd02')/Manager\" />\n        <link rel=\"http://schemas.microsoft.com/ado/2007/08/dataservices/related/EmployeeCollectionByManager\" type=\"application/atom+xml;type=feed\" title=\"EmployeeCollectionByManager\" href=\"EmployeeCollection(guid'c31c7862-fe33-4a13-9bbc-0943fa08fd02')/EmployeeCollectionByManager\" />\n        <link rel=\"http://schemas.microsoft.com/ado/2007/08/dataservices/related/EmployeeCareerCollectionByEmployee\" type=\"application/atom+xml;type=feed\" title=\"EmployeeCareerCollectionByEmployee\" href=\"EmployeeCollection(guid'c31c7862-fe33-4a13-9bbc-0943fa08fd02')/EmployeeCareerCollectionByEmployee\" />\n        <link rel=\"http://schemas.microsoft.com/ado/2007/08/dataservices/related/EmployeeFileCollectionByEmployee\" type=\"application/atom+xml;type=feed\" title=\"EmployeeFileCollectionByEmployee\" href=\"EmployeeCollection(guid'c31c7862-fe33-4a13-9bbc-0943fa08fd02')/EmployeeFileCollectionByEmployee\" />\n        <link rel=\"http://schemas.microsoft.com/ado/2007/08/dataservices/related/EmployeeInFolderCollectionByEmployee\" type=\"application/atom+xml;type=feed\" title=\"EmployeeInFolderCollectionByEmployee\" href=\"EmployeeCollection(guid'c31c7862-fe33-4a13-9bbc-0943fa08fd02')/EmployeeInFolderCollectionByEmployee\" />\n        <link rel=\"http://schemas.microsoft.com/ado/2007/08/dataservices/related/EmployeeInTagCollectionByEntity\" type=\"application/atom+xml;type=feed\" title=\"EmployeeInTagCollectionByEntity\" href=\"EmployeeCollection(guid'c31c7862-fe33-4a13-9bbc-0943fa08fd02')/EmployeeInTagCollectionByEntity\" />\n        <link rel=\"http://schemas.microsoft.com/ado/2007/08/dataservices/related/SalaryCollectionByEmployee\" type=\"application/atom+xml;type=feed\" title=\"SalaryCollectionByEmployee\" href=\"EmployeeCollection(guid'c31c7862-fe33-4a13-9bbc-0943fa08fd02')/SalaryCollectionByEmployee\" />\n        <link rel=\"http://schemas.microsoft.com/ado/2007/08/dataservices/related/VwEmployeesHierarchyCollectionByEmployee\" type=\"application/atom+xml;type=feed\" title=\"VwEmployeesHierarchyCollectionByEmployee\" href=\"EmployeeCollection(guid'c31c7862-fe33-4a13-9bbc-0943fa08fd02')/VwEmployeesHierarchyCollectionByEmployee\" />\n        <title />\n        <updated>2020-04-09T11:20:36Z</updated>\n        <author>\n            <name />\n        </author>\n        <content type=\"application/xml\">\n            <m:properties>\n                <d:Id m:type=\"Edm.Guid\">c31c7862-fe33-4a13-9bbc-0943fa08fd02</d:Id>\n                <d:Name>William Walker</d:Name>\n                <d:CreatedOn m:type=\"Edm.DateTime\">2017-03-30T14:50:04Z</d:CreatedOn>\n                <d:CreatedById m:type=\"Edm.Guid\">76929f8c-7e15-4c64-bdb0-adc62d383727</d:CreatedById>\n                <d:ModifiedOn m:type=\"Edm.DateTime\">2020-02-14T06:30:46.234Z</d:ModifiedOn>\n                <d:ModifiedById m:type=\"Edm.Guid\">410006e1-ca4e-4502-a9ec-e54d922d2c00</d:ModifiedById>\n                <d:ProcessListeners m:type=\"Edm.Int32\">0</d:ProcessListeners>\n                <d:ContactId m:type=\"Edm.Guid\">227aab3b-7c0c-4181-abf9-81585563ab23</d:ContactId>\n                <d:OrgStructureUnitId m:type=\"Edm.Guid\">d436a9ce-9690-4415-9e03-e8061d7cabb5</d:OrgStructureUnitId>\n                <d:Notes></d:Notes>\n                <d:JobId m:type=\"Edm.Guid\">11d68189-ced6-df11-9b2a-001d60e938c6</d:JobId>\n                <d:FullJobTitle>Developer</d:FullJobTitle>\n                <d:OwnerId m:type=\"Edm.Guid\">76929f8c-7e15-4c64-bdb0-adc62d383727</d:OwnerId>\n                <d:CareerStartDate m:type=\"Edm.DateTime\">2019-09-08T00:00:00</d:CareerStartDate>\n                <d:CareerDueDate m:type=\"Edm.DateTime\">0001-01-01T00:00:00</d:CareerDueDate>\n                <d:ProbationDueDate m:type=\"Edm.DateTime\">2020-01-09T00:00:00</d:ProbationDueDate>\n                <d:ReasonForDismissalId m:type=\"Edm.Guid\">00000000-0000-0000-0000-000000000000</d:ReasonForDismissalId>\n                <d:AccountId m:type=\"Edm.Guid\">a0bf3e92-f36b-1410-0499-00155d043204</d:AccountId>\n                <d:ManagerId m:type=\"Edm.Guid\">3e5bd47e-1ebd-41db-a9a6-a3560dcee3cb</d:ManagerId>\n            </m:properties>\n        </content>\n    </entry>\n    <entry>\n        <id>https://myserver.com/0/ServiceModel/EntityDataService.svc/EmployeeCollection(guid'ddb34ecb-f009-484a-ad2b-0a49a475bdb2')</id>\n        <category term=\"Terrasoft.Configuration.Employee\" scheme=\"http://schemas.microsoft.com/ado/2007/08/dataservices/scheme\" />\n        <link rel=\"edit\" title=\"Employee\" href=\"EmployeeCollection(guid'ddb34ecb-f009-484a-ad2b-0a49a475bdb2')\" />\n        <link rel=\"http://schemas.microsoft.com/ado/2007/08/dataservices/related/CreatedBy\" type=\"application/atom+xml;type=entry\" title=\"CreatedBy\" href=\"EmployeeCollection(guid'ddb34ecb-f009-484a-ad2b-0a49a475bdb2')/CreatedBy\" />\n        <link rel=\"http://schemas.microsoft.com/ado/2007/08/dataservices/related/ModifiedBy\" type=\"application/atom+xml;type=entry\" title=\"ModifiedBy\" href=\"EmployeeCollection(guid'ddb34ecb-f009-484a-ad2b-0a49a475bdb2')/ModifiedBy\" />\n        <link rel=\"http://schemas.microsoft.com/ado/2007/08/dataservices/related/Contact\" type=\"application/atom+xml;type=entry\" title=\"Contact\" href=\"EmployeeCollection(guid'ddb34ecb-f009-484a-ad2b-0a49a475bdb2')/Contact\" />\n        <link rel=\"http://schemas.microsoft.com/ado/2007/08/dataservices/related/OrgStructureUnitCollectionByHead\" type=\"application/atom+xml;type=feed\" title=\"OrgStructureUnitCollectionByHead\" href=\"EmployeeCollection(guid'ddb34ecb-f009-484a-ad2b-0a49a475bdb2')/OrgStructureUnitCollectionByHead\" />\n        <link rel=\"http://schemas.microsoft.com/ado/2007/08/dataservices/related/OrgStructureUnit\" type=\"application/atom+xml;type=entry\" title=\"OrgStructureUnit\" href=\"EmployeeCollection(guid'ddb34ecb-f009-484a-ad2b-0a49a475bdb2')/OrgStructureUnit\" />\n        <link rel=\"http://schemas.microsoft.com/ado/2007/08/dataservices/related/Job\" type=\"application/atom+xml;type=entry\" title=\"Job\" href=\"EmployeeCollection(guid'ddb34ecb-f009-484a-ad2b-0a49a475bdb2')/Job\" />\n        <link rel=\"http://schemas.microsoft.com/ado/2007/08/dataservices/related/Owner\" type=\"application/atom+xml;type=entry\" title=\"Owner\" href=\"EmployeeCollection(guid'ddb34ecb-f009-484a-ad2b-0a49a475bdb2')/Owner\" />\n        <link rel=\"http://schemas.microsoft.com/ado/2007/08/dataservices/related/ReasonForDismissal\" type=\"application/atom+xml;type=entry\" title=\"ReasonForDismissal\" href=\"EmployeeCollection(guid'ddb34ecb-f009-484a-ad2b-0a49a475bdb2')/ReasonForDismissal\" />\n        <link rel=\"http://schemas.microsoft.com/ado/2007/08/dataservices/related/Account\" type=\"application/atom+xml;type=entry\" title=\"Account\" href=\"EmployeeCollection(guid'ddb34ecb-f009-484a-ad2b-0a49a475bdb2')/Account\" />\n        <link rel=\"http://schemas.microsoft.com/ado/2007/08/dataservices/related/Manager\" type=\"application/atom+xml;type=entry\" title=\"Manager\" href=\"EmployeeCollection(guid'ddb34ecb-f009-484a-ad2b-0a49a475bdb2')/Manager\" />\n        <link rel=\"http://schemas.microsoft.com/ado/2007/08/dataservices/related/EmployeeCollectionByManager\" type=\"application/atom+xml;type=feed\" title=\"EmployeeCollectionByManager\" href=\"EmployeeCollection(guid'ddb34ecb-f009-484a-ad2b-0a49a475bdb2')/EmployeeCollectionByManager\" />\n        <link rel=\"http://schemas.microsoft.com/ado/2007/08/dataservices/related/EmployeeCareerCollectionByEmployee\" type=\"application/atom+xml;type=feed\" title=\"EmployeeCareerCollectionByEmployee\" href=\"EmployeeCollection(guid'ddb34ecb-f009-484a-ad2b-0a49a475bdb2')/EmployeeCareerCollectionByEmployee\" />\n        <link rel=\"http://schemas.microsoft.com/ado/2007/08/dataservices/related/EmployeeFileCollectionByEmployee\" type=\"application/atom+xml;type=feed\" title=\"EmployeeFileCollectionByEmployee\" href=\"EmployeeCollection(guid'ddb34ecb-f009-484a-ad2b-0a49a475bdb2')/EmployeeFileCollectionByEmployee\" />\n        <link rel=\"http://schemas.microsoft.com/ado/2007/08/dataservices/related/EmployeeInFolderCollectionByEmployee\" type=\"application/atom+xml;type=feed\" title=\"EmployeeInFolderCollectionByEmployee\" href=\"EmployeeCollection(guid'ddb34ecb-f009-484a-ad2b-0a49a475bdb2')/EmployeeInFolderCollectionByEmployee\" />\n        <link rel=\"http://schemas.microsoft.com/ado/2007/08/dataservices/related/EmployeeInTagCollectionByEntity\" type=\"application/atom+xml;type=feed\" title=\"EmployeeInTagCollectionByEntity\" href=\"EmployeeCollection(guid'ddb34ecb-f009-484a-ad2b-0a49a475bdb2')/EmployeeInTagCollectionByEntity\" />\n        <link rel=\"http://schemas.microsoft.com/ado/2007/08/dataservices/related/SalaryCollectionByEmployee\" type=\"application/atom+xml;type=feed\" title=\"SalaryCollectionByEmployee\" href=\"EmployeeCollection(guid'ddb34ecb-f009-484a-ad2b-0a49a475bdb2')/SalaryCollectionByEmployee\" />\n        <link rel=\"http://schemas.microsoft.com/ado/2007/08/dataservices/related/VwEmployeesHierarchyCollectionByEmployee\" type=\"application/atom+xml;type=feed\" title=\"VwEmployeesHierarchyCollectionByEmployee\" href=\"EmployeeCollection(guid'ddb34ecb-f009-484a-ad2b-0a49a475bdb2')/VwEmployeesHierarchyCollectionByEmployee\" />\n        <title />\n        <updated>2020-04-09T11:20:36Z</updated>\n        <author>\n            <name />\n        </author>\n        <content type=\"application/xml\">\n            <m:properties>\n                <d:Id m:type=\"Edm.Guid\">ddb34ecb-f009-484a-ad2b-0a49a475bdb2</d:Id>\n                <d:Name>Timothy Sawyer</d:Name>\n                <d:CreatedOn m:type=\"Edm.DateTime\">2017-03-30T14:54:20Z</d:CreatedOn>\n                <d:CreatedById m:type=\"Edm.Guid\">76929f8c-7e15-4c64-bdb0-adc62d383727</d:CreatedById>\n                <d:ModifiedOn m:type=\"Edm.DateTime\">2017-03-31T07:49:14Z</d:ModifiedOn>\n                <d:ModifiedById m:type=\"Edm.Guid\">76929f8c-7e15-4c64-bdb0-adc62d383727</d:ModifiedById>\n                <d:ProcessListeners m:type=\"Edm.Int32\">0</d:ProcessListeners>\n                <d:ContactId m:type=\"Edm.Guid\">3822fb63-0e78-416f-a06b-3d18bd5e0448</d:ContactId>\n                <d:OrgStructureUnitId m:type=\"Edm.Guid\">d436a9ce-9690-4415-9e03-e8061d7cabb5</d:OrgStructureUnitId>\n                <d:Notes></d:Notes>\n                <d:JobId m:type=\"Edm.Guid\">11d68189-ced6-df11-9b2a-001d60e938c6</d:JobId>\n                <d:FullJobTitle>Developer</d:FullJobTitle>\n                <d:OwnerId m:type=\"Edm.Guid\">76929f8c-7e15-4c64-bdb0-adc62d383727</d:OwnerId>\n                <d:CareerStartDate m:type=\"Edm.DateTime\">2016-12-04T00:00:00</d:CareerStartDate>\n                <d:CareerDueDate m:type=\"Edm.DateTime\">2019-10-08T00:00:00</d:CareerDueDate>\n                <d:ProbationDueDate m:type=\"Edm.DateTime\">0001-01-01T00:00:00</d:ProbationDueDate>\n                <d:ReasonForDismissalId m:type=\"Edm.Guid\">f83b228a-f36b-1410-b783-00155d04320c</d:ReasonForDismissalId>\n                <d:AccountId m:type=\"Edm.Guid\">e308b781-3c5b-4ecb-89ef-5c1ed4da488e</d:AccountId>\n                <d:ManagerId m:type=\"Edm.Guid\">3e5bd47e-1ebd-41db-a9a6-a3560dcee3cb</d:ManagerId>\n            </m:properties>\n        </content>\n    </entry>\n    <entry>\n        <id>https://myserver.com/0/ServiceModel/EntityDataService.svc/EmployeeCollection(guid'0f5feb72-bcc8-4b0c-bace-1cf7d3ee7755')</id>\n        <category term=\"Terrasoft.Configuration.Employee\" scheme=\"http://schemas.microsoft.com/ado/2007/08/dataservices/scheme\" />\n        <link rel=\"edit\" title=\"Employee\" href=\"EmployeeCollection(guid'0f5feb72-bcc8-4b0c-bace-1cf7d3ee7755')\" />\n        <link rel=\"http://schemas.microsoft.com/ado/2007/08/dataservices/related/CreatedBy\" type=\"application/atom+xml;type=entry\" title=\"CreatedBy\" href=\"EmployeeCollection(guid'0f5feb72-bcc8-4b0c-bace-1cf7d3ee7755')/CreatedBy\" />\n        <link rel=\"http://schemas.microsoft.com/ado/2007/08/dataservices/related/ModifiedBy\" type=\"application/atom+xml;type=entry\" title=\"ModifiedBy\" href=\"EmployeeCollection(guid'0f5feb72-bcc8-4b0c-bace-1cf7d3ee7755')/ModifiedBy\" />\n        <link rel=\"http://schemas.microsoft.com/ado/2007/08/dataservices/related/Contact\" type=\"application/atom+xml;type=entry\" title=\"Contact\" href=\"EmployeeCollection(guid'0f5feb72-bcc8-4b0c-bace-1cf7d3ee7755')/Contact\" />\n        <link rel=\"http://schemas.microsoft.com/ado/2007/08/dataservices/related/OrgStructureUnitCollectionByHead\" type=\"application/atom+xml;type=feed\" title=\"OrgStructureUnitCollectionByHead\" href=\"EmployeeCollection(guid'0f5feb72-bcc8-4b0c-bace-1cf7d3ee7755')/OrgStructureUnitCollectionByHead\" />\n        <link rel=\"http://schemas.microsoft.com/ado/2007/08/dataservices/related/OrgStructureUnit\" type=\"application/atom+xml;type=entry\" title=\"OrgStructureUnit\" href=\"EmployeeCollection(guid'0f5feb72-bcc8-4b0c-bace-1cf7d3ee7755')/OrgStructureUnit\" />\n        <link rel=\"http://schemas.microsoft.com/ado/2007/08/dataservices/related/Job\" type=\"application/atom+xml;type=entry\" title=\"Job\" href=\"EmployeeCollection(guid'0f5feb72-bcc8-4b0c-bace-1cf7d3ee7755')/Job\" />\n        <link rel=\"http://schemas.microsoft.com/ado/2007/08/dataservices/related/Owner\" type=\"application/atom+xml;type=entry\" title=\"Owner\" href=\"EmployeeCollection(guid'0f5feb72-bcc8-4b0c-bace-1cf7d3ee7755')/Owner\" />\n        <link rel=\"http://schemas.microsoft.com/ado/2007/08/dataservices/related/ReasonForDismissal\" type=\"application/atom+xml;type=entry\" title=\"ReasonForDismissal\" href=\"EmployeeCollection(guid'0f5feb72-bcc8-4b0c-bace-1cf7d3ee7755')/ReasonForDismissal\" />\n        <link rel=\"http://schemas.microsoft.com/ado/2007/08/dataservices/related/Account\" type=\"application/atom+xml;type=entry\" title=\"Account\" href=\"EmployeeCollection(guid'0f5feb72-bcc8-4b0c-bace-1cf7d3ee7755')/Account\" />\n        <link rel=\"http://schemas.microsoft.com/ado/2007/08/dataservices/related/Manager\" type=\"application/atom+xml;type=entry\" title=\"Manager\" href=\"EmployeeCollection(guid'0f5feb72-bcc8-4b0c-bace-1cf7d3ee7755')/Manager\" />\n        <link rel=\"http://schemas.microsoft.com/ado/2007/08/dataservices/related/EmployeeCollectionByManager\" type=\"application/atom+xml;type=feed\" title=\"EmployeeCollectionByManager\" href=\"EmployeeCollection(guid'0f5feb72-bcc8-4b0c-bace-1cf7d3ee7755')/EmployeeCollectionByManager\" />\n        <link rel=\"http://schemas.microsoft.com/ado/2007/08/dataservices/related/EmployeeCareerCollectionByEmployee\" type=\"application/atom+xml;type=feed\" title=\"EmployeeCareerCollectionByEmployee\" href=\"EmployeeCollection(guid'0f5feb72-bcc8-4b0c-bace-1cf7d3ee7755')/EmployeeCareerCollectionByEmployee\" />\n        <link rel=\"http://schemas.microsoft.com/ado/2007/08/dataservices/related/EmployeeFileCollectionByEmployee\" type=\"application/atom+xml;type=feed\" title=\"EmployeeFileCollectionByEmployee\" href=\"EmployeeCollection(guid'0f5feb72-bcc8-4b0c-bace-1cf7d3ee7755')/EmployeeFileCollectionByEmployee\" />\n        <link rel=\"http://schemas.microsoft.com/ado/2007/08/dataservices/related/EmployeeInFolderCollectionByEmployee\" type=\"application/atom+xml;type=feed\" title=\"EmployeeInFolderCollectionByEmployee\" href=\"EmployeeCollection(guid'0f5feb72-bcc8-4b0c-bace-1cf7d3ee7755')/EmployeeInFolderCollectionByEmployee\" />\n        <link rel=\"http://schemas.microsoft.com/ado/2007/08/dataservices/related/EmployeeInTagCollectionByEntity\" type=\"application/atom+xml;type=feed\" title=\"EmployeeInTagCollectionByEntity\" href=\"EmployeeCollection(guid'0f5feb72-bcc8-4b0c-bace-1cf7d3ee7755')/EmployeeInTagCollectionByEntity\" />\n        <link rel=\"http://schemas.microsoft.com/ado/2007/08/dataservices/related/SalaryCollectionByEmployee\" type=\"application/atom+xml;type=feed\" title=\"SalaryCollectionByEmployee\" href=\"EmployeeCollection(guid'0f5feb72-bcc8-4b0c-bace-1cf7d3ee7755')/SalaryCollectionByEmployee\" />\n        <link rel=\"http://schemas.microsoft.com/ado/2007/08/dataservices/related/VwEmployeesHierarchyCollectionByEmployee\" type=\"application/atom+xml;type=feed\" title=\"VwEmployeesHierarchyCollectionByEmployee\" href=\"EmployeeCollection(guid'0f5feb72-bcc8-4b0c-bace-1cf7d3ee7755')/VwEmployeesHierarchyCollectionByEmployee\" />\n        <title />\n        <updated>2020-04-09T11:20:36Z</updated>\n        <author>\n            <name />\n        </author>\n        <content type=\"application/xml\">\n            <m:properties>\n                <d:Id m:type=\"Edm.Guid\">0f5feb72-bcc8-4b0c-bace-1cf7d3ee7755</d:Id>\n                <d:Name>Symon Clarke</d:Name>\n                <d:CreatedOn m:type=\"Edm.DateTime\">2017-03-30T14:47:15Z</d:CreatedOn>\n                <d:CreatedById m:type=\"Edm.Guid\">76929f8c-7e15-4c64-bdb0-adc62d383727</d:CreatedById>\n                <d:ModifiedOn m:type=\"Edm.DateTime\">2017-03-31T07:41:38Z</d:ModifiedOn>\n                <d:ModifiedById m:type=\"Edm.Guid\">76929f8c-7e15-4c64-bdb0-adc62d383727</d:ModifiedById>\n                <d:ProcessListeners m:type=\"Edm.Int32\">0</d:ProcessListeners>\n                <d:ContactId m:type=\"Edm.Guid\">00e63875-323c-41a9-a795-e532e98d1563</d:ContactId>\n                <d:OrgStructureUnitId m:type=\"Edm.Guid\">ef696860-5b18-42cc-ae96-5fcb927b370a</d:OrgStructureUnitId>\n                <d:Notes></d:Notes>\n                <d:JobId m:type=\"Edm.Guid\">33f48df9-56e6-df11-971b-001d60e938c6</d:JobId>\n                <d:FullJobTitle>Marketing manager</d:FullJobTitle>\n                <d:OwnerId m:type=\"Edm.Guid\">76929f8c-7e15-4c64-bdb0-adc62d383727</d:OwnerId>\n                <d:CareerStartDate m:type=\"Edm.DateTime\">2019-07-14T00:00:00</d:CareerStartDate>\n                <d:CareerDueDate m:type=\"Edm.DateTime\">0001-01-01T00:00:00</d:CareerDueDate>\n                <d:ProbationDueDate m:type=\"Edm.DateTime\">0001-01-01T00:00:00</d:ProbationDueDate>\n                <d:ReasonForDismissalId m:type=\"Edm.Guid\">00000000-0000-0000-0000-000000000000</d:ReasonForDismissalId>\n                <d:AccountId m:type=\"Edm.Guid\">e308b781-3c5b-4ecb-89ef-5c1ed4da488e</d:AccountId>\n                <d:ManagerId m:type=\"Edm.Guid\">82c5f81c-4018-44f1-8dcb-738704fd21c4</d:ManagerId>\n            </m:properties>\n        </content>\n    </entry>\n    <entry>\n        <id>https://myserver.com/0/ServiceModel/EntityDataService.svc/EmployeeCollection(guid'9842387d-069f-466c-9551-32cedbc16d90')</id>\n        <category term=\"Terrasoft.Configuration.Employee\" scheme=\"http://schemas.microsoft.com/ado/2007/08/dataservices/scheme\" />\n        <link rel=\"edit\" title=\"Employee\" href=\"EmployeeCollection(guid'9842387d-069f-466c-9551-32cedbc16d90')\" />\n        <link rel=\"http://schemas.microsoft.com/ado/2007/08/dataservices/related/CreatedBy\" type=\"application/atom+xml;type=entry\" title=\"CreatedBy\" href=\"EmployeeCollection(guid'9842387d-069f-466c-9551-32cedbc16d90')/CreatedBy\" />\n        <link rel=\"http://schemas.microsoft.com/ado/2007/08/dataservices/related/ModifiedBy\" type=\"application/atom+xml;type=entry\" title=\"ModifiedBy\" href=\"EmployeeCollection(guid'9842387d-069f-466c-9551-32cedbc16d90')/ModifiedBy\" />\n        <link rel=\"http://schemas.microsoft.com/ado/2007/08/dataservices/related/Contact\" type=\"application/atom+xml;type=entry\" title=\"Contact\" href=\"EmployeeCollection(guid'9842387d-069f-466c-9551-32cedbc16d90')/Contact\" />\n        <link rel=\"http://schemas.microsoft.com/ado/2007/08/dataservices/related/OrgStructureUnitCollectionByHead\" type=\"application/atom+xml;type=feed\" title=\"OrgStructureUnitCollectionByHead\" href=\"EmployeeCollection(guid'9842387d-069f-466c-9551-32cedbc16d90')/OrgStructureUnitCollectionByHead\" />\n        <link rel=\"http://schemas.microsoft.com/ado/2007/08/dataservices/related/OrgStructureUnit\" type=\"application/atom+xml;type=entry\" title=\"OrgStructureUnit\" href=\"EmployeeCollection(guid'9842387d-069f-466c-9551-32cedbc16d90')/OrgStructureUnit\" />\n        <link rel=\"http://schemas.microsoft.com/ado/2007/08/dataservices/related/Job\" type=\"application/atom+xml;type=entry\" title=\"Job\" href=\"EmployeeCollection(guid'9842387d-069f-466c-9551-32cedbc16d90')/Job\" />\n        <link rel=\"http://schemas.microsoft.com/ado/2007/08/dataservices/related/Owner\" type=\"application/atom+xml;type=entry\" title=\"Owner\" href=\"EmployeeCollection(guid'9842387d-069f-466c-9551-32cedbc16d90')/Owner\" />\n        <link rel=\"http://schemas.microsoft.com/ado/2007/08/dataservices/related/ReasonForDismissal\" type=\"application/atom+xml;type=entry\" title=\"ReasonForDismissal\" href=\"EmployeeCollection(guid'9842387d-069f-466c-9551-32cedbc16d90')/ReasonForDismissal\" />\n        <link rel=\"http://schemas.microsoft.com/ado/2007/08/dataservices/related/Account\" type=\"application/atom+xml;type=entry\" title=\"Account\" href=\"EmployeeCollection(guid'9842387d-069f-466c-9551-32cedbc16d90')/Account\" />\n        <link rel=\"http://schemas.microsoft.com/ado/2007/08/dataservices/related/Manager\" type=\"application/atom+xml;type=entry\" title=\"Manager\" href=\"EmployeeCollection(guid'9842387d-069f-466c-9551-32cedbc16d90')/Manager\" />\n        <link rel=\"http://schemas.microsoft.com/ado/2007/08/dataservices/related/EmployeeCollectionByManager\" type=\"application/atom+xml;type=feed\" title=\"EmployeeCollectionByManager\" href=\"EmployeeCollection(guid'9842387d-069f-466c-9551-32cedbc16d90')/EmployeeCollectionByManager\" />\n        <link rel=\"http://schemas.microsoft.com/ado/2007/08/dataservices/related/EmployeeCareerCollectionByEmployee\" type=\"application/atom+xml;type=feed\" title=\"EmployeeCareerCollectionByEmployee\" href=\"EmployeeCollection(guid'9842387d-069f-466c-9551-32cedbc16d90')/EmployeeCareerCollectionByEmployee\" />\n        <link rel=\"http://schemas.microsoft.com/ado/2007/08/dataservices/related/EmployeeFileCollectionByEmployee\" type=\"application/atom+xml;type=feed\" title=\"EmployeeFileCollectionByEmployee\" href=\"EmployeeCollection(guid'9842387d-069f-466c-9551-32cedbc16d90')/EmployeeFileCollectionByEmployee\" />\n        <link rel=\"http://schemas.microsoft.com/ado/2007/08/dataservices/related/EmployeeInFolderCollectionByEmployee\" type=\"application/atom+xml;type=feed\" title=\"EmployeeInFolderCollectionByEmployee\" href=\"EmployeeCollection(guid'9842387d-069f-466c-9551-32cedbc16d90')/EmployeeInFolderCollectionByEmployee\" />\n        <link rel=\"http://schemas.microsoft.com/ado/2007/08/dataservices/related/EmployeeInTagCollectionByEntity\" type=\"application/atom+xml;type=feed\" title=\"EmployeeInTagCollectionByEntity\" href=\"EmployeeCollection(guid'9842387d-069f-466c-9551-32cedbc16d90')/EmployeeInTagCollectionByEntity\" />\n        <link rel=\"http://schemas.microsoft.com/ado/2007/08/dataservices/related/SalaryCollectionByEmployee\" type=\"application/atom+xml;type=feed\" title=\"SalaryCollectionByEmployee\" href=\"EmployeeCollection(guid'9842387d-069f-466c-9551-32cedbc16d90')/SalaryCollectionByEmployee\" />\n        <link rel=\"http://schemas.microsoft.com/ado/2007/08/dataservices/related/VwEmployeesHierarchyCollectionByEmployee\" type=\"application/atom+xml;type=feed\" title=\"VwEmployeesHierarchyCollectionByEmployee\" href=\"EmployeeCollection(guid'9842387d-069f-466c-9551-32cedbc16d90')/VwEmployeesHierarchyCollectionByEmployee\" />\n        <title />\n        <updated>2020-04-09T11:20:36Z</updated>\n        <author>\n            <name />\n        </author>\n        <content type=\"application/xml\">\n            <m:properties>\n                <d:Id m:type=\"Edm.Guid\">9842387d-069f-466c-9551-32cedbc16d90</d:Id>\n                <d:Name>Mary King</d:Name>\n                <d:CreatedOn m:type=\"Edm.DateTime\">2017-03-30T14:50:30Z</d:CreatedOn>\n                <d:CreatedById m:type=\"Edm.Guid\">76929f8c-7e15-4c64-bdb0-adc62d383727</d:CreatedById>\n                <d:ModifiedOn m:type=\"Edm.DateTime\">2017-03-31T07:27:18Z</d:ModifiedOn>\n                <d:ModifiedById m:type=\"Edm.Guid\">76929f8c-7e15-4c64-bdb0-adc62d383727</d:ModifiedById>\n                <d:ProcessListeners m:type=\"Edm.Int32\">0</d:ProcessListeners>\n                <d:ContactId m:type=\"Edm.Guid\">cad50d15-f28d-49fc-aa79-21615ac35b86</d:ContactId>\n                <d:OrgStructureUnitId m:type=\"Edm.Guid\">43172897-fbd6-4bc1-b81b-55964ab558e6</d:OrgStructureUnitId>\n                <d:Notes></d:Notes>\n                <d:JobId m:type=\"Edm.Guid\">955472f0-56e6-df11-971b-001d60e938c6</d:JobId>\n                <d:FullJobTitle>Customer manager</d:FullJobTitle>\n                <d:OwnerId m:type=\"Edm.Guid\">76929f8c-7e15-4c64-bdb0-adc62d383727</d:OwnerId>\n                <d:CareerStartDate m:type=\"Edm.DateTime\">2019-04-07T00:00:00</d:CareerStartDate>\n                <d:CareerDueDate m:type=\"Edm.DateTime\">0001-01-01T00:00:00</d:CareerDueDate>\n                <d:ProbationDueDate m:type=\"Edm.DateTime\">0001-01-01T00:00:00</d:ProbationDueDate>\n                <d:ReasonForDismissalId m:type=\"Edm.Guid\">00000000-0000-0000-0000-000000000000</d:ReasonForDismissalId>\n                <d:AccountId m:type=\"Edm.Guid\">e308b781-3c5b-4ecb-89ef-5c1ed4da488e</d:AccountId>\n                <d:ManagerId m:type=\"Edm.Guid\">e17c9cd6-262d-481d-86a9-f09a82984e0e</d:ManagerId>\n            </m:properties>\n        </content>\n    </entry>\n    <entry>\n        <id>https://myserver.com/0/ServiceModel/EntityDataService.svc/EmployeeCollection(guid'f11df686-a557-4790-99e5-36ec8dcd2f00')</id>\n        <category term=\"Terrasoft.Configuration.Employee\" scheme=\"http://schemas.microsoft.com/ado/2007/08/dataservices/scheme\" />\n        <link rel=\"edit\" title=\"Employee\" href=\"EmployeeCollection(guid'f11df686-a557-4790-99e5-36ec8dcd2f00')\" />\n        <link rel=\"http://schemas.microsoft.com/ado/2007/08/dataservices/related/CreatedBy\" type=\"application/atom+xml;type=entry\" title=\"CreatedBy\" href=\"EmployeeCollection(guid'f11df686-a557-4790-99e5-36ec8dcd2f00')/CreatedBy\" />\n        <link rel=\"http://schemas.microsoft.com/ado/2007/08/dataservices/related/ModifiedBy\" type=\"application/atom+xml;type=entry\" title=\"ModifiedBy\" href=\"EmployeeCollection(guid'f11df686-a557-4790-99e5-36ec8dcd2f00')/ModifiedBy\" />\n        <link rel=\"http://schemas.microsoft.com/ado/2007/08/dataservices/related/Contact\" type=\"application/atom+xml;type=entry\" title=\"Contact\" href=\"EmployeeCollection(guid'f11df686-a557-4790-99e5-36ec8dcd2f00')/Contact\" />\n        <link rel=\"http://schemas.microsoft.com/ado/2007/08/dataservices/related/OrgStructureUnitCollectionByHead\" type=\"application/atom+xml;type=feed\" title=\"OrgStructureUnitCollectionByHead\" href=\"EmployeeCollection(guid'f11df686-a557-4790-99e5-36ec8dcd2f00')/OrgStructureUnitCollectionByHead\" />\n        <link rel=\"http://schemas.microsoft.com/ado/2007/08/dataservices/related/OrgStructureUnit\" type=\"application/atom+xml;type=entry\" title=\"OrgStructureUnit\" href=\"EmployeeCollection(guid'f11df686-a557-4790-99e5-36ec8dcd2f00')/OrgStructureUnit\" />\n        <link rel=\"http://schemas.microsoft.com/ado/2007/08/dataservices/related/Job\" type=\"application/atom+xml;type=entry\" title=\"Job\" href=\"EmployeeCollection(guid'f11df686-a557-4790-99e5-36ec8dcd2f00')/Job\" />\n        <link rel=\"http://schemas.microsoft.com/ado/2007/08/dataservices/related/Owner\" type=\"application/atom+xml;type=entry\" title=\"Owner\" href=\"EmployeeCollection(guid'f11df686-a557-4790-99e5-36ec8dcd2f00')/Owner\" />\n        <link rel=\"http://schemas.microsoft.com/ado/2007/08/dataservices/related/ReasonForDismissal\" type=\"application/atom+xml;type=entry\" title=\"ReasonForDismissal\" href=\"EmployeeCollection(guid'f11df686-a557-4790-99e5-36ec8dcd2f00')/ReasonForDismissal\" />\n        <link rel=\"http://schemas.microsoft.com/ado/2007/08/dataservices/related/Account\" type=\"application/atom+xml;type=entry\" title=\"Account\" href=\"EmployeeCollection(guid'f11df686-a557-4790-99e5-36ec8dcd2f00')/Account\" />\n        <link rel=\"http://schemas.microsoft.com/ado/2007/08/dataservices/related/Manager\" type=\"application/atom+xml;type=entry\" title=\"Manager\" href=\"EmployeeCollection(guid'f11df686-a557-4790-99e5-36ec8dcd2f00')/Manager\" />\n        <link rel=\"http://schemas.microsoft.com/ado/2007/08/dataservices/related/EmployeeCollectionByManager\" type=\"application/atom+xml;type=feed\" title=\"EmployeeCollectionByManager\" href=\"EmployeeCollection(guid'f11df686-a557-4790-99e5-36ec8dcd2f00')/EmployeeCollectionByManager\" />\n        <link rel=\"http://schemas.microsoft.com/ado/2007/08/dataservices/related/EmployeeCareerCollectionByEmployee\" type=\"application/atom+xml;type=feed\" title=\"EmployeeCareerCollectionByEmployee\" href=\"EmployeeCollection(guid'f11df686-a557-4790-99e5-36ec8dcd2f00')/EmployeeCareerCollectionByEmployee\" />\n        <link rel=\"http://schemas.microsoft.com/ado/2007/08/dataservices/related/EmployeeFileCollectionByEmployee\" type=\"application/atom+xml;type=feed\" title=\"EmployeeFileCollectionByEmployee\" href=\"EmployeeCollection(guid'f11df686-a557-4790-99e5-36ec8dcd2f00')/EmployeeFileCollectionByEmployee\" />\n        <link rel=\"http://schemas.microsoft.com/ado/2007/08/dataservices/related/EmployeeInFolderCollectionByEmployee\" type=\"application/atom+xml;type=feed\" title=\"EmployeeInFolderCollectionByEmployee\" href=\"EmployeeCollection(guid'f11df686-a557-4790-99e5-36ec8dcd2f00')/EmployeeInFolderCollectionByEmployee\" />\n        <link rel=\"http://schemas.microsoft.com/ado/2007/08/dataservices/related/EmployeeInTagCollectionByEntity\" type=\"application/atom+xml;type=feed\" title=\"EmployeeInTagCollectionByEntity\" href=\"EmployeeCollection(guid'f11df686-a557-4790-99e5-36ec8dcd2f00')/EmployeeInTagCollectionByEntity\" />\n        <link rel=\"http://schemas.microsoft.com/ado/2007/08/dataservices/related/SalaryCollectionByEmployee\" type=\"application/atom+xml;type=feed\" title=\"SalaryCollectionByEmployee\" href=\"EmployeeCollection(guid'f11df686-a557-4790-99e5-36ec8dcd2f00')/SalaryCollectionByEmployee\" />\n        <link rel=\"http://schemas.microsoft.com/ado/2007/08/dataservices/related/VwEmployeesHierarchyCollectionByEmployee\" type=\"application/atom+xml;type=feed\" title=\"VwEmployeesHierarchyCollectionByEmployee\" href=\"EmployeeCollection(guid'f11df686-a557-4790-99e5-36ec8dcd2f00')/VwEmployeesHierarchyCollectionByEmployee\" />\n        <title />\n        <updated>2020-04-09T11:20:36Z</updated>\n        <author>\n            <name />\n        </author>\n        <content type=\"application/xml\">\n            <m:properties>\n                <d:Id m:type=\"Edm.Guid\">f11df686-a557-4790-99e5-36ec8dcd2f00</d:Id>\n                <d:Name>Sarah M. Richards</d:Name>\n                <d:CreatedOn m:type=\"Edm.DateTime\">2017-03-30T14:24:32Z</d:CreatedOn>\n                <d:CreatedById m:type=\"Edm.Guid\">76929f8c-7e15-4c64-bdb0-adc62d383727</d:CreatedById>\n                <d:ModifiedOn m:type=\"Edm.DateTime\">2017-03-31T07:37:37Z</d:ModifiedOn>\n                <d:ModifiedById m:type=\"Edm.Guid\">76929f8c-7e15-4c64-bdb0-adc62d383727</d:ModifiedById>\n                <d:ProcessListeners m:type=\"Edm.Int32\">0</d:ProcessListeners>\n                <d:ContactId m:type=\"Edm.Guid\">f1edc225-4312-45e9-90fb-a63edbe9294f</d:ContactId>\n                <d:OrgStructureUnitId m:type=\"Edm.Guid\">60c294d4-b4f7-4809-b061-1e8016264edc</d:OrgStructureUnitId>\n                <d:Notes></d:Notes>\n                <d:JobId m:type=\"Edm.Guid\">ca49a603-57e6-df11-971b-001d60e938c6</d:JobId>\n                <d:FullJobTitle>Head of accounting department</d:FullJobTitle>\n                <d:OwnerId m:type=\"Edm.Guid\">76929f8c-7e15-4c64-bdb0-adc62d383727</d:OwnerId>\n                <d:CareerStartDate m:type=\"Edm.DateTime\">2019-01-08T00:00:00</d:CareerStartDate>\n                <d:CareerDueDate m:type=\"Edm.DateTime\">0001-01-01T00:00:00</d:CareerDueDate>\n                <d:ProbationDueDate m:type=\"Edm.DateTime\">0001-01-01T00:00:00</d:ProbationDueDate>\n                <d:ReasonForDismissalId m:type=\"Edm.Guid\">00000000-0000-0000-0000-000000000000</d:ReasonForDismissalId>\n                <d:AccountId m:type=\"Edm.Guid\">e308b781-3c5b-4ecb-89ef-5c1ed4da488e</d:AccountId>\n                <d:ManagerId m:type=\"Edm.Guid\">26fffdc9-a184-47a7-a6b6-cafc9fe58327</d:ManagerId>\n            </m:properties>\n        </content>\n    </entry>\n</feed>"
    }
  ]
}