Delete an Access Code
Delete an Access Code
DELETE
https://connect.getseam.com/access_codes/delete
Query Parameters
Name
Type
Description
access_code_id*
String
{
"action_attempt": {
"status": "pending",
"action_type": "DELETE_ACCESS_CODE",
"action_attempt_id": "6a5e05e3-fd92-4211-aecb-ac53f1382ea1",
"result": null,
"error": null
},
"ok": true
}
Code Example
seam.access_codes.delete("123e4567-e89b-12d3-a456-426614174000")
# <Seam::ActionAttempt:0x0000000107026c98
# status="success"
# action_type="DELETE_ACCESS_CODE",
# action_attempt_id="af0155aa-51fe-4e63-9acb-2fbd33675cac",
# result={}>
Parameters
access_code_id
type: string
ID of the Access Code
Response
This section shows the JSON response returned by the API. Since each language encapsulates this response inside objects specific to that language and/or implementation, the actual type in your language might differ from what’s written here.
JSON format
{
"action_attempt": {
"status": "pending",
"action_type": "DELETE_ACCESS_CODE",
"action_attempt_id": "6a5e05e3-fd92-4211-aecb-ac53f1382ea1",
"result": null,
"error": null
},
"ok": true
}
Last updated
Was this helpful?