[[["이해하기 쉬움","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(UTC)"],[],[],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."]]