> ## Documentation Index
> Fetch the complete documentation index at: https://docs.blinkops.com/llms.txt
> Use this file to discover all available pages before exploring further.

# Update Client List Entries

Perform operations on client list entries.

<Note>
  External Documentation

  To learn more, visit the [Akamai Client List documentation](https://techdocs.akamai.com/client-lists/reference/post-update-items).
</Note>

## Basic Parameters

<div className="integrations-table">
  | Parameter         | Description                                                                                                                                                                                                                                                                                                                    |
  | ----------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ |
  | Entries To Append | A JSON array of new entry objects to add to the client list.<br /><br />For example:<br /><pre><code>\[<br />  \{<br />    "description":"update1",<br />    "tags":\[<br />      "tag1",<br />      "tag2",<br />      "tag3"<br />    ],<br />    "value":"10.10.10.11"<br />  }<br />]</code></pre>                         |
  | Entries To Delete | A JSON array of entry object values to remove from the client list.<br /><br />For example:<br /><pre><code>\[<br />  \{<br />    "value":"10.10.10.11"<br />  },<br />  \{<br />    "value":"10.10.10.12"<br />  }<br />]</code></pre>                                                                                        |
  | Entries To Update | A JSON array of entry objects with modifications to apply to existing entries.<br /><br />For example:<br /><pre><code>\[<br />  \{<br />    "description":"update1",<br />    "value":"10.10.10.11"<br />  },<br />  \{<br />    "tags": \["tag1","tag2","tag3"],<br />    "value":"10.10.10.12"<br />  }<br />]</code></pre> |
  | List ID           | The ID of the client list to modify entries in.                                                                                                                                                                                                                                                                                |
</div>

## Advanced Parameters

<div className="integrations-table">
  | Parameter          | Description                                                                      |
  | ------------------ | -------------------------------------------------------------------------------- |
  | Account Switch Key | An account switch key to execute the operation on behalf of a different account. |
</div>

## Example Output

```json theme={"dark"}
{
	"appended": [
		{
			"createDate": "2023-04-05T19:29:02.320+00:00",
			"createdBy": "jkowalski",
			"description": "Jamaica - North America",
			"expirationDate": "2023-12-31T23:59:19.700+00:00",
			"listId": "1234_MYIPLIST",
			"productionStatus": "INACTIVE",
			"stagingStatus": "INACTIVE",
			"tags": [
				"allowlist2"
			],
			"type": "GEO",
			"updateDate": "2023-04-05T19:29:02.320+00:00",
			"updatedBy": "jdupont",
			"value": "JM"
		}
	],
	"deleted": [
		{
			"value": "CA",
			"listId": "1234_MYIPLIST"
		}
	],
	"updated": []
}
```

## Workflow Library Example

[Update Client List Entries with Akamai Client List and Send Results Via Email](https://library.blinkops.com/workflows/update-client-list-entries-with-akamai-client-list-and-send-results-via-email)

<div className="iframe-wrapper">
  <div className="iframe-media">
    <img src="https://mintcdn.com/blinkops-2/ojHYuDeYX5FWuN8a/img/Icons/play-box.svg?fit=max&auto=format&n=ojHYuDeYX5FWuN8a&q=85&s=b8af968e71438a9499c3223c9bd29fb2" alt="Workflow Library" width="16" height="16" data-path="img/Icons/play-box.svg" />

    Preview this Workflow on desktop
  </div>

  <iframe className="iframe" src="https://library.blinkops.com/workflows/update-client-list-entries-with-akamai-client-list-and-send-results-via-email/canvas" />
</div>
