GET api/company/eula

This method will retrieve company's eula policy

Request Information

URI Parameters

None.

Body Parameters

None.

Response Information

Resource Description

Instance of

PtdEulaPo
NameDescriptionTypeAdditional information
Slug

string

None.

Title

string

None.

PageContent

string

None.

Id

integer

None.

Legal

string

None.

EffectiveDate

date

None.

Response Formats

application/json, text/json

Sample:
{
  "slug": "sample string 1",
  "title": "sample string 2",
  "pageContent": "sample string 3",
  "id": 4,
  "legal": "sample string 5",
  "effectiveDate": "2025-05-20T16:38:04.6686555-05:00"
}

text/html

Sample:
{"slug":"sample string 1","title":"sample string 2","pageContent":"sample string 3","id":4,"legal":"sample string 5","effectiveDate":"2025-05-20T16:38:04.6686555-05:00"}

application/xml, text/xml

Sample:
<PtdEulaPo xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Ptd.Model.Pos">
  <Id xmlns="http://schemas.datacontract.org/2004/07/Ptd.Model.Entities.Core">4</Id>
  <EffectiveDate xmlns="http://schemas.datacontract.org/2004/07/Ptd.Model.Entities">2025-05-20T16:38:04.6686555-05:00</EffectiveDate>
  <Legal xmlns="http://schemas.datacontract.org/2004/07/Ptd.Model.Entities">sample string 5</Legal>
  <PageContent>sample string 3</PageContent>
  <Slug>sample string 1</Slug>
  <Title>sample string 2</Title>
</PtdEulaPo>