GET api/jobs/{skip}/{take}
Retrieve all items using skip/take bulk paging. page=skip/take or skip=page*take or take=page*skip
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| skip |
Index of the first record to take (Min:0) |
integer |
Default value is 0 |
| take |
Maximum counted records to be taken in the results (Max:100) |
integer |
Default value is 100 |
Body Parameters
None.
Response Information
Resource Description
List of Jobs
Collection of Jobs| Name | Description | Type | Additional information |
|---|---|---|---|
| ucc_showonweb |
האם להציג באתר |
boolean |
None. |
| DisplayName |
שם לתצוגה |
string |
None. |
| Id |
Dynamics 365 primary key. |
globally unique identifier |
None. |
| CreatedOn |
נוצר ב |
date |
None. |
| ModifiedOn | date |
None. |
Response Formats
application/json, text/json
Sample:
[
{
"ucc_showonweb": true,
"displayName": "sample string 1",
"id": "7c5fd08a-1361-4b45-8ac2-6c60d1983455",
"createdOn": "2026-06-03T18:13:30.6531909+00:00",
"modifiedOn": "2026-06-03T18:13:30.6531909+00:00"
},
{
"ucc_showonweb": true,
"displayName": "sample string 1",
"id": "7c5fd08a-1361-4b45-8ac2-6c60d1983455",
"createdOn": "2026-06-03T18:13:30.6531909+00:00",
"modifiedOn": "2026-06-03T18:13:30.6531909+00:00"
}
]
application/xml, text/xml
Sample:
<ArrayOfJobs xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Youcc.D365.ICPA.DataModel">
<Jobs>
<CreatedOn>2026-06-03T18:13:30.6531909+00:00</CreatedOn>
<Id>7c5fd08a-1361-4b45-8ac2-6c60d1983455</Id>
<ModifiedOn>2026-06-03T18:13:30.6531909+00:00</ModifiedOn>
<DisplayName>sample string 1</DisplayName>
<ucc_showonweb>true</ucc_showonweb>
</Jobs>
<Jobs>
<CreatedOn>2026-06-03T18:13:30.6531909+00:00</CreatedOn>
<Id>7c5fd08a-1361-4b45-8ac2-6c60d1983455</Id>
<ModifiedOn>2026-06-03T18:13:30.6531909+00:00</ModifiedOn>
<DisplayName>sample string 1</DisplayName>
<ucc_showonweb>true</ucc_showonweb>
</Jobs>
</ArrayOfJobs>
application/bson
Sample:
Binary JSON content. See http://bsonspec.org for details.