GET api/Opportunities

Request Information

URI Parameters

None.

Body Parameters

None.

Response Information

Resource Description

Collection of Opportunity
NameDescriptionTypeAdditional information
Id

integer

None.

Title

string

None.

Description

string

None.

OpImageURL

string

None.

SeeMoreLink

string

None.

CreatedDate

date

None.

UpdateDate

date

None.

IsDeleted

boolean

None.

Response Formats

application/json, text/json

Sample:
[
  {
    "Id": 1,
    "Title": "sample string 2",
    "Description": "sample string 3",
    "OpImageURL": "sample string 4",
    "SeeMoreLink": "sample string 5",
    "CreatedDate": "2026-06-26T00:31:01.1443837+03:00",
    "UpdateDate": "2026-06-26T00:31:01.1443837+03:00",
    "IsDeleted": true
  },
  {
    "Id": 1,
    "Title": "sample string 2",
    "Description": "sample string 3",
    "OpImageURL": "sample string 4",
    "SeeMoreLink": "sample string 5",
    "CreatedDate": "2026-06-26T00:31:01.1443837+03:00",
    "UpdateDate": "2026-06-26T00:31:01.1443837+03:00",
    "IsDeleted": true
  }
]

application/xml, text/xml

Sample:
<ArrayOfOpportunity xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/PishtyAPI20.Models">
  <Opportunity>
    <CreatedDate>2026-06-26T00:31:01.1443837+03:00</CreatedDate>
    <Description>sample string 3</Description>
    <Id>1</Id>
    <IsDeleted>true</IsDeleted>
    <OpImageURL>sample string 4</OpImageURL>
    <SeeMoreLink>sample string 5</SeeMoreLink>
    <Title>sample string 2</Title>
    <UpdateDate>2026-06-26T00:31:01.1443837+03:00</UpdateDate>
  </Opportunity>
  <Opportunity>
    <CreatedDate>2026-06-26T00:31:01.1443837+03:00</CreatedDate>
    <Description>sample string 3</Description>
    <Id>1</Id>
    <IsDeleted>true</IsDeleted>
    <OpImageURL>sample string 4</OpImageURL>
    <SeeMoreLink>sample string 5</SeeMoreLink>
    <Title>sample string 2</Title>
    <UpdateDate>2026-06-26T00:31:01.1443837+03:00</UpdateDate>
  </Opportunity>
</ArrayOfOpportunity>