Perform operations on client list entries.
External DocumentationTo learn more, visit the Akamai Client List documentation.

Basic Parameters

ParameterDescription
Entries To AppendA JSON array of new entry objects to add to the client list.

For example:
[
{
“description”:“update1”,
“tags”:[
“tag1”,
“tag2”,
“tag3”
],
“value”:“10.10.10.11”
}
]
Entries To DeleteA JSON array of entry object values to remove from the client list.

For example:
[
{
“value”:“10.10.10.11”
},
{
“value”:“10.10.10.12”
}
]
Entries To UpdateA JSON array of entry objects with modifications to apply to existing entries.

For example:
[
{
“description”:“update1”,
“value”:“10.10.10.11”
},
{
“tags”: [“tag1”,“tag2”,“tag3”],
“value”:“10.10.10.12”
}
]
List IDThe ID of the client list to modify entries in.

Advanced Parameters

ParameterDescription
Account Switch KeyAn account switch key to execute the operation on behalf of a different account.

Example Output

{
	"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
Workflow LibraryPreview this Workflow on desktop