PUT api/UserProfileCertificate/{id}?AccessToken={AccessToken}

Request Information

URI Parameters

NameDescriptionTypeAdditional information
id

integer

Required

AccessToken

string

Required

Body Parameters

ModifyUserProfileCertificateRequest
NameDescriptionTypeAdditional information
Id

integer

None.

CertificateName

string

None.

CertificateOrganization

string

None.

StartDate

date

None.

EndDate

date

None.

IsCurrent

boolean

None.

CertificateLink

string

None.

Request Formats

application/json, text/json

Sample:
{
  "Id": 1,
  "CertificateName": "sample string 2",
  "CertificateOrganization": "sample string 3",
  "StartDate": "2025-12-10T15:27:44.7560921+05:30",
  "EndDate": "2025-12-10T15:27:44.7560921+05:30",
  "IsCurrent": true,
  "CertificateLink": "sample string 6"
}

application/xml, text/xml

Sample:
<ModifyUserProfileCertificateRequest xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Udyoga.Models.UserProfileModels.UserProfileCertificate">
  <CertificateLink>sample string 6</CertificateLink>
  <CertificateName>sample string 2</CertificateName>
  <CertificateOrganization>sample string 3</CertificateOrganization>
  <EndDate>2025-12-10T15:27:44.7560921+05:30</EndDate>
  <IsCurrent>true</IsCurrent>
  <StartDate>2025-12-10T15:27:44.7560921+05:30</StartDate>
  <Id>1</Id>
</ModifyUserProfileCertificateRequest>

application/x-www-form-urlencoded

Sample:

Failed to generate the sample for media type 'application/x-www-form-urlencoded'. Cannot use formatter 'JQueryMvcFormUrlEncodedFormatter' to write type 'ModifyUserProfileCertificateRequest'.

Response Information

Resource Description

IHttpActionResult

None.

Response Formats

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

Sample:

Sample not available.