Mutation

update_site_login_credential

Updates an existing set of login credentials for a site. For example, if the user's password has changed, you can update the corresponding entry in Burp Suite Enterprise Edition to reflect this change.

Arguments

input: UpdateSiteLoginCredentialInput!

The fields used to specify which set of login credentials you want to update, and what the new username and password should be.


Input Fields

id(): ID!
The unique identifier of the set of login credentials that you want to update.
label(): String
A name that you want to use to help identify the set of login credentials.
username(): String
The new username that will be used by Burp Scanner to log in to the site.
password(): String
The new password that will be used by Burp Scanner to log in to the site.

Return Fields

login_credential(): LoginCredential
The updated login credentials.

Example

Query
mutation UpdateSiteLoginCredential($input: UpdateSiteLoginCredentialInput!) {
    update_site_login_credential(input: $input) {
        login_credential {
            id
            label
            username
        }
    }
}
Variables
{
  "input": {
    "id": "57c38526-ce8c-48d1-971a-472efd0b3b47",
    "label": "peter weiner",
    "username": "p.weiner",
    "password": "password123"
  }
}