GET api/batchapi/resumebatch/{id}

Request Information

URI Parameters

NameDescriptionTypeAdditional information
id

globally unique identifier

Required

Body Parameters

None.

Response Information

Resource Description

BatchResumeViewModel
NameDescriptionTypeAdditional information
id

globally unique identifier

None.

local_id

string

Required

completion

integer

None.

stepName

string

None.

step

integer

None.

message

string

None.

Response Formats

application/json, text/json

Sample:
{
  "id": "a2f76357-385e-46d2-bcd0-831979f3b2ed",
  "local_id": "sample string 2",
  "completion": 3,
  "stepName": "sample string 4",
  "step": 5,
  "message": "sample string 6"
}

application/xml, text/xml

Sample:
<mediwave_batch_resume xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/EntityModel">
  <completion>3</completion>
  <id>a2f76357-385e-46d2-bcd0-831979f3b2ed</id>
  <local_id>sample string 2</local_id>
  <message>sample string 6</message>
  <step>5</step>
  <stepName>sample string 4</stepName>
</mediwave_batch_resume>