Mutation

delete_site_recorded_login

Permanently removes a recorded login sequence for a site.

Arguments

input: DeleteSiteRecordedLoginInput!

The fields used to specify which recorded login sequence you want to delete.


Input Fields

id(): ID!
The unique identifier for the recorded login sequence that you want to delete.

Return Fields

id(): ID
The unique identifier for the deleted recorded login sequence.

Example

Query
mutation DeleteSiteRecordedLogin($input: DeleteSiteRecordedLoginInput!) {
    delete_site_recorded_login(input: $input) {
        id
    }
}
Variables
{
  "input": {
    "id": "9965ae69-8d75-4491-adc2-55431b820bcf"
  }
}