[[["容易理解","easyToUnderstand","thumb-up"],["確實解決了我的問題","solvedMyProblem","thumb-up"],["其他","otherUp","thumb-up"]],[["缺少我需要的資訊","missingTheInformationINeed","thumb-down"],["過於複雜/步驟過多","tooComplicatedTooManySteps","thumb-down"],["過時","outOfDate","thumb-down"],["翻譯問題","translationIssue","thumb-down"],["示例/程式碼問題","samplesCodeIssue","thumb-down"],["其他","otherDown","thumb-down"]],["上次更新時間:2025-03-25 (世界標準時間)。"],[],[],null,["# Manage contact delegates\n\nThis guide covers how to create, list, and delete contact delegates.\n\nCreate a delegate\n-----------------\n\nTo create a delegate for a user, create a `POST` request containing the email\naddress of the delegator: \n\n POST https://admin.googleapis.com/admin/contacts/v1/users/delegator@example.com/delegates\n\nIn the request body, provide the email address for the delegate:\n\n`\n{\n\"email\": \"`\u003cvar translate=\"no\"\u003edelegate\u003c/var\u003e`@example.com\"\n}\n`\n\nA successful response returns an `HTTP 200` status code and the new delegate's\nemail:\n\n`\n{\n\"email\": \"`\u003cvar translate=\"no\"\u003edelegate\u003c/var\u003e`@example.com\"\n}\n`\n\nList delegates\n--------------\n\nTo list delegates for a user's contacts, create a `GET` request containing the\nemail address of that user: \n\n GET https://admin.googleapis.com/admin/contacts/v1/users/delegator@example.com/delegates\n\nA successful response returns an `HTTP 200` status code and a list of delegate\nemails:\n\n`\n{\n\"email\": \"`\u003cvar translate=\"no\"\u003edelegate1\u003c/var\u003e`@example.com\"\n}\n`\n\nDelete a delegate\n-----------------\n\nTo delete a delegate of a user's contacts, create a `DELETE` request containing\nthe email address of both the delegaor and delegate: \n\n DELETE https://admin.googleapis.com/admin/contacts/v1/users/delegator@example.com/delegates/delegate@example.com\n\nA successful response returns an `HTTP 200` status code."]]