POST api/Hub47/schedule-pitch

Request Information

URI Parameters

None.

Body Parameters

PitchRequest
NameDescriptionTypeAdditional information
StartupId

integer

None.

VolunteerIds

Collection of integer

None.

PitchDateTime

date

None.

Venue

string

None.

Notes

string

None.

Request Formats

application/json, text/json

Sample:
{
  "StartupId": 1,
  "VolunteerIds": [
    1,
    2
  ],
  "PitchDateTime": "2026-07-14T05:10:37.4743829+04:00",
  "Venue": "sample string 3",
  "Notes": "sample string 4"
}

application/xml, text/xml

Sample:
<PitchRequest xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/TaskManagementServices.Models">
  <Notes>sample string 4</Notes>
  <PitchDateTime>2026-07-14T05:10:37.4743829+04:00</PitchDateTime>
  <StartupId>1</StartupId>
  <Venue>sample string 3</Venue>
  <VolunteerIds xmlns:d2p1="http://schemas.microsoft.com/2003/10/Serialization/Arrays">
    <d2p1:int>1</d2p1:int>
    <d2p1:int>2</d2p1:int>
  </VolunteerIds>
</PitchRequest>

application/x-www-form-urlencoded

Sample:

Sample not available.

Response Information

Resource Description

IHttpActionResult

None.

Response Formats

application/json, text/json, application/xml, text/xml

Sample:

Sample not available.