DELETE api/ee_history/{id}

Request Information

URI Parameters

NameDescriptionTypeAdditional information
id

integer

Required

Body Parameters

None.

Response Information

Resource Description

ee_history
NameDescriptionTypeAdditional information
id

integer

None.

update_at

date

None.

location

string

None.

worker_status

string

None.

worker_job_code

string

None.

count

integer

None.

ft_pt

string

None.

Response Formats

application/json, text/json

Sample:
{
  "id": 1,
  "update_at": "2025-02-06T16:55:33.0894142+00:00",
  "location": "sample string 2",
  "worker_status": "sample string 3",
  "worker_job_code": "sample string 4",
  "count": 1,
  "ft_pt": "sample string 5"
}

application/xml, text/xml

Sample:
<ee_history xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/EvokeAPI">
  <count>1</count>
  <ft_pt>sample string 5</ft_pt>
  <id>1</id>
  <location>sample string 2</location>
  <update_at>2025-02-06T16:55:33.0894142+00:00</update_at>
  <worker_job_code>sample string 4</worker_job_code>
  <worker_status>sample string 3</worker_status>
</ee_history>