POST api/admin/machine/status

Request Information

URI Parameters

None.

Body Parameters

MachineDto
NameDescriptionTypeAdditional information
Id

integer

None.

CompanyName

string

None.

MachineId

string

None.

CreatedOn

date

None.

IsActive

boolean

None.

Request Formats

application/json, text/json

Sample:
{
  "Id": 1,
  "CompanyName": "sample string 2",
  "MachineId": "sample string 3",
  "CreatedOn": "2026-04-19T19:35:42.8998891+05:30",
  "IsActive": true
}

application/xml, text/xml

Sample:
<MachineDto xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/MainAdminApi">
  <CompanyName>sample string 2</CompanyName>
  <CreatedOn>2026-04-19T19:35:42.8998891+05:30</CreatedOn>
  <Id>1</Id>
  <IsActive>true</IsActive>
  <MachineId>sample string 3</MachineId>
</MachineDto>

application/x-www-form-urlencoded

Sample:

Sample not available.

Response Information

Resource Description

IHttpActionResult

None.

Response Formats

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

Sample:

Sample not available.