💾
💾
💾
💾
api
Search…
⌃K

Update 911 Record

/update
Full Url:
Arguments:
  • token (string, required)
  • did_id (int, required)
  • full_name (string, required)
  • address (string, required)
  • city (string, required)
  • state (char(2), required)
  • zip (string, required)
  • unit_type (string, optional)
  • unit_number (string, optional)
Info: Really, this is just a rehash of /create. Just... this one updates, instead of creates.
Example Success:
{
"code": 200,
"status": "success",
"data": {
"id": 42,
"did_id": 15,
"did_number": 5555555555,
"full_name": "Bob McFrob",
"address": "333 Some Street",
"city": "Englewood",
"state": "CO",
"zip": "80112",
"unit_type": "SUITE",
"unit_number": "16B",
"create_dt": "2016-02-05 12:22:06",
"modify_dt": "2016-02-05 12:22:06"
}
}
Example Error:
{
"code": 400,
"status": "error",
"data": "No 911 Information Found"
}