Mutation
delete_site_login_credential
Permanently removes a saved set of login credentials for a site.
Arguments
input: DeleteSiteLoginCredentialInput!
The fields used to specify which set of login credentials you want to delete.
Input Fields
id():
ID!
The unique identifier for the set of login credentials that you want to delete.
Return Fields
id():
ID
The unique identifier for the deleted set of login credentials.
Example
Query
mutation DeleteSiteLoginCredential($input: DeleteSiteLoginCredentialInput!) {
delete_site_login_credential(input: $input) {
id
}
}
Variables
{
"input": {
"id": "ccdfe758-94bf-432c-811a-903ddba19d25"
}
}