GET api/SmartPhoneOrders/{clientid}/{id}

Check order status.

Request Information

URI Parameters

NameDescriptionTypeAdditional information
clientid

integer

Required

id

integer

Required

Body Parameters

None.

Response Information

Resource Description

TicketInfo
NameDescriptionTypeAdditional information
ticket_id

Ticket Id

integer

None.

short_description

Short ticket description

string

None.

status

Ticket status

string

None.

created

Identity of who created the ticket

Created

None.

updated

Identity of who updated the ticket

Created

None.

note_days

List of note by days

Collection of NoteDay

None.

needs_approval

Ticket needs approval flag

boolean

None.

Response Formats

application/json, text/json

Sample:
{
  "ticket_id": 1,
  "short_description": "sample string 2",
  "status": "sample string 3",
  "created": {
    "timestamp": "2026-04-02T05:24:54.0572373-04:00",
    "user": "sample string 1"
  },
  "updated": {
    "timestamp": "2026-04-02T05:24:54.0572373-04:00",
    "user": "sample string 1"
  },
  "note_days": [
    {
      "date": "sample string 1",
      "notes": [
        {
          "note_id": 1,
          "title": "sample string 2",
          "user": "sample string 3",
          "timestamp": "2026-04-02T05:24:54.0728238-04:00",
          "notes": "sample string 5",
          "isAlert": true
        },
        {
          "note_id": 1,
          "title": "sample string 2",
          "user": "sample string 3",
          "timestamp": "2026-04-02T05:24:54.0728238-04:00",
          "notes": "sample string 5",
          "isAlert": true
        }
      ]
    },
    {
      "date": "sample string 1",
      "notes": [
        {
          "note_id": 1,
          "title": "sample string 2",
          "user": "sample string 3",
          "timestamp": "2026-04-02T05:24:54.0728238-04:00",
          "notes": "sample string 5",
          "isAlert": true
        },
        {
          "note_id": 1,
          "title": "sample string 2",
          "user": "sample string 3",
          "timestamp": "2026-04-02T05:24:54.0728238-04:00",
          "notes": "sample string 5",
          "isAlert": true
        }
      ]
    }
  ],
  "needs_approval": true
}