GET api/Organization?organizationType={organizationType}&lastChanged={lastChanged}
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| organizationType | integer |
Required |
|
| lastChanged | date |
None. |
Body Parameters
None.
Response Information
Resource Description
Collection of Organization| Name | Description | Type | Additional information |
|---|---|---|---|
| id | integer |
None. |
|
| name | string |
None. |
|
| customerNo | integer |
None. |
|
| lastChanged | date |
None. |
|
| customerName | string |
None. |
Response Formats
application/json, text/json
Sample:
[
{
"id": 1,
"name": "sample string 2",
"customerNo": 1,
"lastChanged": "2025-11-29T01:12:54.9389608+01:00",
"customerName": "sample string 4"
},
{
"id": 1,
"name": "sample string 2",
"customerNo": 1,
"lastChanged": "2025-11-29T01:12:54.9389608+01:00",
"customerName": "sample string 4"
}
]
application/xml, text/xml
Sample:
<ArrayOfOrganization xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
<Organization>
<id>1</id>
<name>sample string 2</name>
<customerNo>1</customerNo>
<lastChanged>2025-11-29T01:12:54.9389608+01:00</lastChanged>
<customerName>sample string 4</customerName>
</Organization>
<Organization>
<id>1</id>
<name>sample string 2</name>
<customerNo>1</customerNo>
<lastChanged>2025-11-29T01:12:54.9389608+01:00</lastChanged>
<customerName>sample string 4</customerName>
</Organization>
</ArrayOfOrganization>