PUT api/v1/industries/{industryUid}

Updates the industry by the specified industry UID.

Request Information

URI Parameters

NameDescriptionTypeAdditional information
industryUid

The industry UID.

globally unique identifier

Required

Body Parameters

The industry.

Industry
NameDescriptionTypeAdditional information
Name

The industry name.

string

Required

String length: inclusive between 0 and 50

Company

The company we are creating this industry in If no industry is set, eclipse will default to the first company in the portal

globally unique identifier

None.

Request Formats

application/json, text/json

Sample:
{
  "Name": "sample string 1",
  "Company": "ba208a26-d77d-48e3-a87d-ee7903d74ebf"
}

application/xml, text/xml

Sample:
<Industry xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Eclipse.WebApi.Common.Models">
  <Company>ba208a26-d77d-48e3-a87d-ee7903d74ebf</Company>
  <Name>sample string 1</Name>
</Industry>

application/x-www-form-urlencoded

Sample:

Sample not available.

Response Information

Resource Description

Returns the updated industry.

IndustryViewModel
NameDescriptionTypeAdditional information
Name

The industry name.

string

None.

Portal

The portal.

PortalViewModel

None.

IndustryGuid

The industries unique identifier

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

Sample:
{
  "Name": "sample string 1",
  "Portal": {
    "Name": "sample string 1",
    "Uid": "6673812c-b514-41f0-83eb-4281b3ca5c2a",
    "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-10-27T13:20:48.4918096+00:00",
    "UpdatedBy": "sample string 3"
  },
  "IndustryGuid": "9e316944-7d3c-4cf2-ab09-ea9ee0e6809e",
  "Uid": "d5211922-ce7a-4347-8dd5-bb961eb84454",
  "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-10-27T13:20:48.4918096+00:00",
  "UpdatedBy": "sample string 4"
}

application/xml, text/xml

Sample:
<IndustryViewModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Eclipse.WebApi.Common.ViewModels">
  <DateUpdated>2025-10-27T13:20:48.4918096+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>d5211922-ce7a-4347-8dd5-bb961eb84454</Uid>
  <UpdatedBy>sample string 4</UpdatedBy>
  <IndustryGuid>9e316944-7d3c-4cf2-ab09-ea9ee0e6809e</IndustryGuid>
  <Name>sample string 1</Name>
  <Portal>
    <DateUpdated>2025-10-27T13:20:48.4918096+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>6673812c-b514-41f0-83eb-4281b3ca5c2a</Uid>
    <UpdatedBy>sample string 3</UpdatedBy>
    <Name>sample string 1</Name>
  </Portal>
</IndustryViewModel>