PUT api/Steps/{id}
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| id | integer |
Required |
Body Parameters
Step| Name | Description | Type | Additional information |
|---|---|---|---|
| StepId | integer |
None. |
|
| studyID | string |
Required |
|
| ParticipantID | string |
None. |
|
| NumberOfSteps | integer |
None. |
|
| Date | date |
None. |
Request Formats
application/json, text/json
Sample:
{
"StepId": 1,
"studyID": "sample string 2",
"ParticipantID": "sample string 3",
"NumberOfSteps": 4,
"Date": "2025-12-21T23:18:32.9198031-08:00"
}
application/xml, text/xml
Sample:
<Step xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/diabetesAppService.Models"> <Date>2025-12-21T23:18:32.9198031-08:00</Date> <NumberOfSteps>4</NumberOfSteps> <ParticipantID>sample string 3</ParticipantID> <StepId>1</StepId> <studyID>sample string 2</studyID> </Step>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
None.