GET v1/Me/Projects

Request Information

URI Parameters

None.

Body Parameters

None.

Response Information

Resource Description

Collection of BasicProjectDto
NameDescriptionTypeAdditional information
Id

integer

None.

Title

string

None.

Description

string

None.

StartDate

date

None.

EndDate

date

None.

Customer

CustomerBasicInfo

None.

Shop

ShopBasicInfo

None.

Response Formats

application/json, text/json

Sample:
[
  {
    "Id": 1,
    "Title": "sample string 2",
    "Description": "sample string 3",
    "StartDate": "2026-06-21T21:31:31.8760284+02:00",
    "EndDate": "2026-06-21T21:31:31.8760284+02:00",
    "Customer": null,
    "Shop": {
      "Id": 1,
      "Name": "sample string 2",
      "ShopOwnerId": 3,
      "ShopGroupId": 4,
      "Active": true
    }
  },
  {
    "Id": 1,
    "Title": "sample string 2",
    "Description": "sample string 3",
    "StartDate": "2026-06-21T21:31:31.8760284+02:00",
    "EndDate": "2026-06-21T21:31:31.8760284+02:00",
    "Customer": null,
    "Shop": {
      "Id": 1,
      "Name": "sample string 2",
      "ShopOwnerId": 3,
      "ShopGroupId": 4,
      "Active": true
    }
  }
]

application/xml, text/xml

Sample:
<ArrayOfBasicProjectDto xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
  <BasicProjectDto>
    <Id>1</Id>
    <Title>sample string 2</Title>
    <Description>sample string 3</Description>
    <StartDate>2026-06-21T21:31:31.8760284+02:00</StartDate>
    <EndDate>2026-06-21T21:31:31.8760284+02:00</EndDate>
    <Shop>
      <Id>1</Id>
      <Name>sample string 2</Name>
      <ShopOwnerId>3</ShopOwnerId>
      <ShopGroupId>4</ShopGroupId>
      <Active>true</Active>
    </Shop>
  </BasicProjectDto>
  <BasicProjectDto>
    <Id>1</Id>
    <Title>sample string 2</Title>
    <Description>sample string 3</Description>
    <StartDate>2026-06-21T21:31:31.8760284+02:00</StartDate>
    <EndDate>2026-06-21T21:31:31.8760284+02:00</EndDate>
    <Shop>
      <Id>1</Id>
      <Name>sample string 2</Name>
      <ShopOwnerId>3</ShopOwnerId>
      <ShopGroupId>4</ShopGroupId>
      <Active>true</Active>
    </Shop>
  </BasicProjectDto>
</ArrayOfBasicProjectDto>