Description

Update a training assignment

Parameters

Name Type Required Optional Searchable Note
transcriptid numeric REQUIRED, Passed via URI
startdate datetime OPTIONAL, Passed via BODY
duedate datetime OPTIONAL, Passed via BODY

Examples

Example Request

http://devsandbox.targetsolutions.com/v1/trainingassignments/{transcriptid}

Example Header

PUT /trainingassignments/{transcriptid} HTTP/1.1
Host: http://devsandbox.targetsolutions.com/v1
AccessToken: iGkaIdHzvG46Kwr6soFu+w==
Cache-Control: no-cache

Example Body JSON

{
  "startdate":"random startdate data",
  "duedate":"random duedate data"
}

Possible Results Sets

Results Set

{
  "httpcode":202,
  "moreinfo":"http://developers.targetsolutions.com/v1/responsecodes/702",
  "developermessage":"The request has been fulfilled and resulted in a resource being updated.",
  "statuscode":702,
  "status":"accepted" 
} 

Access Denied Set

{
  "httpcode":401,
  "moreinfo":"http://developers.targetsolutions.com/v1/responsecodes/800",
  "developermessage":"A request was made to a resource that you do not have ownership of.",
  "statuscode":800,
  "status":"access denied"
}