GET api/streets/{skip}/{take}/{city}/{queryTerm}
Retrieve all items using skip/take bulk paging. page=skip/take or skip=page*take or take=page*skip Only records with state=Active
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| skip |
Index of the first record to take (Min:0) |
integer |
Required |
| take |
Maximum counted records to be taken in the results (Max:100) |
integer |
Required |
| city |
Filter by cities FK for city |
globally unique identifier |
Required |
| queryTerm |
Search streets with names start like the query |
string |
Required |
Body Parameters
None.
Response Information
Resource Description
List Of Street
Collection of ucc_street| Name | Description | Type | Additional information |
|---|---|---|---|
| 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:
[
{
"displayName": "sample string 1",
"id": "4879ad05-f92a-45a0-9f98-78b642421303",
"createdOn": "2026-06-03T18:13:31.0983319+00:00",
"modifiedOn": "2026-06-03T18:13:31.0983319+00:00"
},
{
"displayName": "sample string 1",
"id": "4879ad05-f92a-45a0-9f98-78b642421303",
"createdOn": "2026-06-03T18:13:31.0983319+00:00",
"modifiedOn": "2026-06-03T18:13:31.0983319+00:00"
}
]
application/xml, text/xml
Sample:
<ArrayOfucc_street xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Youcc.D365.ICPA.DataModel">
<ucc_street>
<CreatedOn>2026-06-03T18:13:31.0983319+00:00</CreatedOn>
<Id>4879ad05-f92a-45a0-9f98-78b642421303</Id>
<ModifiedOn>2026-06-03T18:13:31.0983319+00:00</ModifiedOn>
<DisplayName>sample string 1</DisplayName>
</ucc_street>
<ucc_street>
<CreatedOn>2026-06-03T18:13:31.0983319+00:00</CreatedOn>
<Id>4879ad05-f92a-45a0-9f98-78b642421303</Id>
<ModifiedOn>2026-06-03T18:13:31.0983319+00:00</ModifiedOn>
<DisplayName>sample string 1</DisplayName>
</ucc_street>
</ArrayOfucc_street>
application/bson
Sample:
Binary JSON content. See http://bsonspec.org for details.