GET api/historical/domains?companyId={companyId}
Create list of domains for this company.
Request Information
URI Parameters
Name | Description | Type | Additional information |
---|---|---|---|
companyId | integer |
Required |
Body Parameters
None.
Response Information
Resource Description
Collection of DomainModelName | Description | Type | Additional information |
---|---|---|---|
ID | integer |
Required |
|
Name | string |
Required String length: inclusive between 0 and 255 |
|
Protocol | string |
Required String length: inclusive between 0 and 10 |
|
Path | string |
String length: inclusive between 0 and 255 |
|
KickoffPath | string |
String length: inclusive between 0 and 255 |
|
IsActive | boolean |
Required |
|
CreatedBy | integer |
Required |
|
CreatedDate | date |
Required |
|
ModifiedBy | integer |
None. |
|
ModifiedDate | date |
None. |
Response Formats
application/json, text/json
Sample:
[ { "ID": 1, "Name": "sample string 2", "Protocol": "sample string 3", "Path": "sample string 4", "KickoffPath": "sample string 5", "IsActive": true, "CreatedBy": 7, "CreatedDate": "2025-04-03T01:09:28.949819+00:00", "ModifiedBy": 1, "ModifiedDate": "2025-04-03T01:09:28.949819+00:00" }, { "ID": 1, "Name": "sample string 2", "Protocol": "sample string 3", "Path": "sample string 4", "KickoffPath": "sample string 5", "IsActive": true, "CreatedBy": 7, "CreatedDate": "2025-04-03T01:09:28.949819+00:00", "ModifiedBy": 1, "ModifiedDate": "2025-04-03T01:09:28.949819+00:00" } ]
application/xml, text/xml
Sample:
<ArrayOfDomainModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/DALGMA.Models"> <DomainModel> <CreatedBy>7</CreatedBy> <CreatedDate>2025-04-03T01:09:28.949819+00:00</CreatedDate> <ID>1</ID> <IsActive>true</IsActive> <KickoffPath>sample string 5</KickoffPath> <ModifiedBy>1</ModifiedBy> <ModifiedDate>2025-04-03T01:09:28.949819+00:00</ModifiedDate> <Name>sample string 2</Name> <Path>sample string 4</Path> <Protocol>sample string 3</Protocol> </DomainModel> <DomainModel> <CreatedBy>7</CreatedBy> <CreatedDate>2025-04-03T01:09:28.949819+00:00</CreatedDate> <ID>1</ID> <IsActive>true</IsActive> <KickoffPath>sample string 5</KickoffPath> <ModifiedBy>1</ModifiedBy> <ModifiedDate>2025-04-03T01:09:28.949819+00:00</ModifiedDate> <Name>sample string 2</Name> <Path>sample string 4</Path> <Protocol>sample string 3</Protocol> </DomainModel> </ArrayOfDomainModel>