## Retrieve the DCV Delegation unique identifier. `dcv_delegation.get(DCVDelegationGetParams**kwargs) -> DCVDelegationUUID` **get** `/zones/{zone_id}/dcv_delegation/uuid` Retrieve the account and zone specific unique identifier used as part of the CNAME target for DCV Delegation. ### Parameters - `zone_id: str` Identifier. ### Returns - `class DCVDelegationUUID: …` - `uuid: Optional[str]` The DCV Delegation unique identifier. ### Example ```python import os from cloudflare import Cloudflare client = Cloudflare( api_token=os.environ.get("CLOUDFLARE_API_TOKEN"), # This is the default and can be omitted ) dcv_delegation_uuid = client.dcv_delegation.get( zone_id="023e105f4ecef8ad9ca31a8372d0c353", ) print(dcv_delegation_uuid.uuid) ``` #### Response ```json { "errors": [ { "code": 1000, "message": "message", "documentation_url": "documentation_url", "source": { "pointer": "pointer" } } ], "messages": [ { "code": 1000, "message": "message", "documentation_url": "documentation_url", "source": { "pointer": "pointer" } } ], "success": true, "result": { "uuid": "abc123def456ghi7" } } ```