POST api/v1/portals/{portalUid}/companies
Creates the company with a specified Portal UID.
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| portalUid |
The portal UID. |
globally unique identifier |
Required |
Body Parameters
The company.
Company| Name | Description | Type | Additional information |
|---|---|---|---|
| Name |
The company name. |
string |
Required String length: inclusive between 0 and 100 |
| AddressLine1 |
The address line1. |
string |
String length: inclusive between 0 and 100 |
| AddressLine2 |
The address line2. |
string |
String length: inclusive between 0 and 100 |
| AddressLine3 |
The address line3. |
string |
String length: inclusive between 0 and 100 |
| AddressLine4 |
The address line4. |
string |
String length: inclusive between 0 and 100 |
| PostCode |
The post code. |
string |
String length: inclusive between 0 and 50 |
| Country |
The country. |
globally unique identifier |
None. |
| Latitude |
The latitude. |
string |
String length: inclusive between 0 and 10 |
| Longitude |
The longitude. |
string |
String length: inclusive between 0 and 10 |
Request Formats
application/json, text/json
{
"Name": "sample string 1",
"AddressLine1": "sample string 2",
"AddressLine2": "sample string 3",
"AddressLine3": "sample string 4",
"AddressLine4": "sample string 5",
"PostCode": "sample string 6",
"Country": "c7f916ff-fc42-4ac3-87dd-9e103693ae9a",
"Latitude": "sample string 8",
"Longitude": "sample string 9"
}
application/xml, text/xml
<Company xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Eclipse.WebApi.Common.Models"> <AddressLine1>sample string 2</AddressLine1> <AddressLine2>sample string 3</AddressLine2> <AddressLine3>sample string 4</AddressLine3> <AddressLine4>sample string 5</AddressLine4> <Country>c7f916ff-fc42-4ac3-87dd-9e103693ae9a</Country> <Latitude>sample string 8</Latitude> <Longitude>sample string 9</Longitude> <Name>sample string 1</Name> <PostCode>sample string 6</PostCode> </Company>
application/x-www-form-urlencoded
Sample not available.
Response Information
Resource Description
Returns response message.
CompanyViewModel| Name | Description | Type | Additional information |
|---|---|---|---|
| Name |
The company name. |
string |
None. |
| AddressLine1 |
The address line1. |
string |
None. |
| AddressLine2 |
The address line2. |
string |
None. |
| AddressLine3 |
The address line3. |
string |
None. |
| AddressLine4 |
The address line4. |
string |
None. |
| PostCode |
The post code. |
string |
None. |
| Country |
The country. |
CountryViewModel |
None. |
| Latitude |
The latitude. |
string |
None. |
| Longitude |
The longitude. |
string |
None. |
| PortalUid |
The portal uid that this company belongs |
globally unique identifier |
None. |
| PortalGuid |
The portal guid that this company belongs |
globally unique identifier |
None. |
| CompanyGuid |
The company guid |
globally unique identifier |
None. |
| Uid |
The GUID. |
globally unique identifier |
None. |
| Links |
The links. |
Collection of Link |
None. |
| DateUpdated |
Last time the record was updated |
date |
None. |
| UpdatedBy |
Who updated the record last |
string |
None. |
Response Formats
application/json, text/json
{
"Name": "sample string 1",
"AddressLine1": "sample string 2",
"AddressLine2": "sample string 3",
"AddressLine3": "sample string 4",
"AddressLine4": "sample string 5",
"PostCode": "sample string 6",
"Country": {
"Iso3Code": "sample string 1",
"Name": "sample string 2",
"Portal": {
"Name": "sample string 1",
"Uid": "f9e1d2e0-c9e1-4be7-873a-da46f6248e88",
"Links": [
{
"Href": "http://webapihelppage1.com",
"Method": "sample string 2",
"Rel": "sample string 3",
"Title": "sample string 4",
"Type": "sample string 5"
},
{
"Href": "http://webapihelppage1.com",
"Method": "sample string 2",
"Rel": "sample string 3",
"Title": "sample string 4",
"Type": "sample string 5"
}
],
"DateUpdated": "2025-12-21T17:56:04.3670282+00:00",
"UpdatedBy": "sample string 3"
},
"CountryGuid": "48733458-32d3-4d4a-99a3-879588e46480",
"Uid": "0e0b4ce4-6f6d-4699-b8e9-17896062071e",
"Links": [
{
"Href": "http://webapihelppage1.com",
"Method": "sample string 2",
"Rel": "sample string 3",
"Title": "sample string 4",
"Type": "sample string 5"
},
{
"Href": "http://webapihelppage1.com",
"Method": "sample string 2",
"Rel": "sample string 3",
"Title": "sample string 4",
"Type": "sample string 5"
}
],
"DateUpdated": "2025-12-21T17:56:04.3670282+00:00",
"UpdatedBy": "sample string 5"
},
"Latitude": "sample string 7",
"Longitude": "sample string 8",
"PortalUid": "da568bc0-2b66-445f-aeb0-b6dd6c7a8e27",
"PortalGuid": "151b0cf0-713d-4777-a22f-9f62a723a45a",
"CompanyGuid": "9c7023ef-7af1-4e97-ba8c-12d892035e6f",
"Uid": "dd1ae2a9-067d-42f1-a791-bd2390b69456",
"Links": [
{
"Href": "http://webapihelppage1.com",
"Method": "sample string 2",
"Rel": "sample string 3",
"Title": "sample string 4",
"Type": "sample string 5"
},
{
"Href": "http://webapihelppage1.com",
"Method": "sample string 2",
"Rel": "sample string 3",
"Title": "sample string 4",
"Type": "sample string 5"
}
],
"DateUpdated": "2025-12-21T17:56:04.3670282+00:00",
"UpdatedBy": "sample string 13"
}
application/xml, text/xml
<CompanyViewModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Eclipse.WebApi.Common.ViewModels">
<DateUpdated>2025-12-21T17:56:04.3670282+00:00</DateUpdated>
<Links xmlns:d2p1="http://schemas.datacontract.org/2004/07/Eclipse.WebApi.Common.Models">
<d2p1:Link>
<d2p1:Href>http://webapihelppage1.com/</d2p1:Href>
<d2p1:Method>sample string 2</d2p1:Method>
<d2p1:Rel>sample string 3</d2p1:Rel>
<d2p1:Title>sample string 4</d2p1:Title>
<d2p1:Type>sample string 5</d2p1:Type>
</d2p1:Link>
<d2p1:Link>
<d2p1:Href>http://webapihelppage1.com/</d2p1:Href>
<d2p1:Method>sample string 2</d2p1:Method>
<d2p1:Rel>sample string 3</d2p1:Rel>
<d2p1:Title>sample string 4</d2p1:Title>
<d2p1:Type>sample string 5</d2p1:Type>
</d2p1:Link>
</Links>
<Uid>dd1ae2a9-067d-42f1-a791-bd2390b69456</Uid>
<UpdatedBy>sample string 13</UpdatedBy>
<AddressLine1>sample string 2</AddressLine1>
<AddressLine2>sample string 3</AddressLine2>
<AddressLine3>sample string 4</AddressLine3>
<AddressLine4>sample string 5</AddressLine4>
<CompanyGuid>9c7023ef-7af1-4e97-ba8c-12d892035e6f</CompanyGuid>
<Country>
<DateUpdated>2025-12-21T17:56:04.3670282+00:00</DateUpdated>
<Links xmlns:d3p1="http://schemas.datacontract.org/2004/07/Eclipse.WebApi.Common.Models">
<d3p1:Link>
<d3p1:Href>http://webapihelppage1.com/</d3p1:Href>
<d3p1:Method>sample string 2</d3p1:Method>
<d3p1:Rel>sample string 3</d3p1:Rel>
<d3p1:Title>sample string 4</d3p1:Title>
<d3p1:Type>sample string 5</d3p1:Type>
</d3p1:Link>
<d3p1:Link>
<d3p1:Href>http://webapihelppage1.com/</d3p1:Href>
<d3p1:Method>sample string 2</d3p1:Method>
<d3p1:Rel>sample string 3</d3p1:Rel>
<d3p1:Title>sample string 4</d3p1:Title>
<d3p1:Type>sample string 5</d3p1:Type>
</d3p1:Link>
</Links>
<Uid>0e0b4ce4-6f6d-4699-b8e9-17896062071e</Uid>
<UpdatedBy>sample string 5</UpdatedBy>
<CountryGuid>48733458-32d3-4d4a-99a3-879588e46480</CountryGuid>
<Iso3Code>sample string 1</Iso3Code>
<Name>sample string 2</Name>
<Portal>
<DateUpdated>2025-12-21T17:56:04.3670282+00:00</DateUpdated>
<Links xmlns:d4p1="http://schemas.datacontract.org/2004/07/Eclipse.WebApi.Common.Models">
<d4p1:Link>
<d4p1:Href>http://webapihelppage1.com/</d4p1:Href>
<d4p1:Method>sample string 2</d4p1:Method>
<d4p1:Rel>sample string 3</d4p1:Rel>
<d4p1:Title>sample string 4</d4p1:Title>
<d4p1:Type>sample string 5</d4p1:Type>
</d4p1:Link>
<d4p1:Link>
<d4p1:Href>http://webapihelppage1.com/</d4p1:Href>
<d4p1:Method>sample string 2</d4p1:Method>
<d4p1:Rel>sample string 3</d4p1:Rel>
<d4p1:Title>sample string 4</d4p1:Title>
<d4p1:Type>sample string 5</d4p1:Type>
</d4p1:Link>
</Links>
<Uid>f9e1d2e0-c9e1-4be7-873a-da46f6248e88</Uid>
<UpdatedBy>sample string 3</UpdatedBy>
<Name>sample string 1</Name>
</Portal>
</Country>
<Latitude>sample string 7</Latitude>
<Longitude>sample string 8</Longitude>
<Name>sample string 1</Name>
<PortalGuid>151b0cf0-713d-4777-a22f-9f62a723a45a</PortalGuid>
<PortalUid>da568bc0-2b66-445f-aeb0-b6dd6c7a8e27</PortalUid>
<PostCode>sample string 6</PostCode>
</CompanyViewModel>