PUT api/v1/seek/experiences

Update volunteer experience for user 'userId'

Request Information

URI Parameters

None.

Body Parameters

ExperienceModel
NameDescriptionTypeAdditional information
Id

integer

None.

Title

string

Required

String length: inclusive between 0 and 100

Organisation

string

Required

String length: inclusive between 0 and 100

When

string

Required

String length: inclusive between 0 and 100

Description

string

Required

String length: inclusive between 0 and 500

UserId

integer

Required

Order

integer

None.

Request Formats

application/json, text/json, text/html

Sample:
{
  "id": 1,
  "title": "sample string 2",
  "organisation": "sample string 3",
  "when": "sample string 4",
  "description": "sample string 5",
  "userId": 6,
  "order": 7
}

application/xml, text/xml

Sample:
<ExperienceModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/VOL.API.Models">
  <Description>sample string 5</Description>
  <Id>1</Id>
  <Order>7</Order>
  <Organisation>sample string 3</Organisation>
  <Title>sample string 2</Title>
  <UserId>6</UserId>
  <When>sample string 4</When>
</ExperienceModel>

application/x-www-form-urlencoded

Sample:

Sample not available.

Response Information

Resource Description

HttpResponseMessage
NameDescriptionTypeAdditional information
Version

Version

None.

Content

HttpContent

None.

StatusCode

HttpStatusCode

None.

ReasonPhrase

string

None.

Headers

Collection of Object

None.

RequestMessage

HttpRequestMessage

None.

IsSuccessStatusCode

boolean

None.