GET api/profile/getorders?personID={personID}

Request Information

URI Parameters

NameDescriptionTypeAdditional information
personID

integer

Required

Body Parameters

None.

Response Information

Resource Description

Collection of tblServiceOrders
NameDescriptionTypeAdditional information
intIdPerson

integer

None.

dteRegister

date

None.

txtDescription

string

None.

intIdAgent

integer

None.

txtAgentName

string

None.

bitPendingInteraction

boolean

None.

bitPending

boolean

None.

intIdServiceOrder

integer

None.

Response Formats

application/json, text/json

Sample:
[
  {
    "intIdPerson": 1,
    "dteRegister": "2024-11-16T18:37:36.8583149-03:00",
    "txtDescription": "sample string 2",
    "intIdAgent": 1,
    "txtAgentName": "sample string 3",
    "bitPendingInteraction": true,
    "bitPending": true,
    "intIdServiceOrder": 4
  },
  {
    "intIdPerson": 1,
    "dteRegister": "2024-11-16T18:37:36.8583149-03:00",
    "txtDescription": "sample string 2",
    "intIdAgent": 1,
    "txtAgentName": "sample string 3",
    "bitPendingInteraction": true,
    "bitPending": true,
    "intIdServiceOrder": 4
  }
]

text/html

Sample:
[{"intIdPerson":1,"dteRegister":"2024-11-16T18:37:36.8583149-03:00","txtDescription":"sample string 2","intIdAgent":1,"txtAgentName":"sample string 3","bitPendingInteraction":true,"bitPending":true,"intIdServiceOrder":4},{"intIdPerson":1,"dteRegister":"2024-11-16T18:37:36.8583149-03:00","txtDescription":"sample string 2","intIdAgent":1,"txtAgentName":"sample string 3","bitPendingInteraction":true,"bitPending":true,"intIdServiceOrder":4}]

application/xml, text/xml

Sample:
<ArrayOftblServiceOrders xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/FoneClube.DataAccess">
  <tblServiceOrders>
    <bitPending>true</bitPending>
    <bitPendingInteraction>true</bitPendingInteraction>
    <dteRegister>2024-11-16T18:37:36.8583149-03:00</dteRegister>
    <intIdAgent>1</intIdAgent>
    <intIdPerson>1</intIdPerson>
    <intIdServiceOrder>4</intIdServiceOrder>
    <txtAgentName>sample string 3</txtAgentName>
    <txtDescription>sample string 2</txtDescription>
  </tblServiceOrders>
  <tblServiceOrders>
    <bitPending>true</bitPending>
    <bitPendingInteraction>true</bitPendingInteraction>
    <dteRegister>2024-11-16T18:37:36.8583149-03:00</dteRegister>
    <intIdAgent>1</intIdAgent>
    <intIdPerson>1</intIdPerson>
    <intIdServiceOrder>4</intIdServiceOrder>
    <txtAgentName>sample string 3</txtAgentName>
    <txtDescription>sample string 2</txtDescription>
  </tblServiceOrders>
</ArrayOftblServiceOrders>