# Remove service account link request

This function removes a service account as a link candidate to create a subaccount or
link to a subaccount. When you use this function, the system removes the Link option in
cPanel's User Manager interface (_cPanel >> Home >> Preferences >> User Manager_).

Note:

You must use at least one of the following parameters:
* services.email.dismiss
* services.ftp.dismiss
* services.webdisk.dismiss

Endpoint: GET /UserManager/dismiss_merge
Version: 11.138.0.6
Security: BasicAuth

## Query parameters:

  - `domain` (string, required)
    The service account's associated domain.
    Example: "example.com"

  - `username` (string, required)
    The username for the service account.

Note:

This parameter does not include the domain name.
    Example: "example1"

  - `services.email.dismiss` (integer)
    Whether to dismiss the merge of the email service account.

* 1 - Dismiss.
* 0 - Do not dismiss.
    Enum: 0, 1

  - `services.ftp.dismiss` (integer)
    Whether to dismiss the merge of the FTP service account.

* 1 - Dismiss.
* 0 - Do not dismiss.
    Enum: 0, 1

  - `services.webdisk.dismiss` (integer)
    Whether to dismiss the merge of the Web Disk service account.

* 1 - Dismiss.
* 0 - Do not dismiss.
    Enum: 0, 1

## Response 200 fields (application/json):

  - `apiversion` (integer)
    The version of the API.
    Example: 3

  - `func` (string)
    The name of the method called.
    Example: "dismiss_merge"

  - `module` (string)
    The name of the module called.
    Example: "UserManager"

  - `result` (object)

  - `result.data` (any)

  - `result.errors` (array,null)
    List of errors if the API failed.

  - `result.messages` (array,null)
    List of messages generated by the API.

  - `result.metadata` (object)

  - `result.status` (integer)
    - 1 - Success
- 0 - Failed: Check the errors field for more details.
    Enum: 0, 1

  - `result.warnings` (array,null)
    List of warnings generated by the API. Warnings describe non-critical failures or other problematic conditions noted while running a API.


