documents.get 및 documents.batchUpdate 메서드에는 타겟 문서를 지정하는 매개변수로 documentId가 필요합니다. documents.create 메서드는 생성된 문서의 인스턴스를 반환하며, 여기에서 documentId를 읽을 수 있습니다. documentId에 대한 자세한 내용은 문서 ID를 참고하세요.
일괄 업데이트
documents.batchUpdate 메서드는 수행할 단일 요청을 각각 지정하는 request 객체 목록을 사용합니다. 예를 들어 단락 형식을 지정한 다음 인라인 이미지를 추가합니다. 각 요청은 적용되기 전에 유효성이 검사되며 요청은 일괄 요청에 표시된 순서에 따라 처리됩니다.
일괄 업데이트의 모든 요청은 원자적으로 적용됩니다. 즉, 요청이 유효하지 않으면 전체 업데이트가 실패하고 (잠재적으로 종속된) 변경사항이 적용되지 않습니다.
일부 documents.batchUpdate 메서드는 적용된 요청에 관한 정보가 포함된 응답을 제공합니다. 이러한 메서드는 response 객체 목록이 포함된 응답 본문을 반환합니다. 다른 요청은 정보를 반환하고 빈 응답을 표시할 필요가 없습니다. 응답 목록의 객체는 상응하는 요청과 동일한 색인 순서를 사용합니다.
[[["이해하기 쉬움","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"]],["최종 업데이트: 2024-11-18(UTC)"],[[["This guide explains how to use the Google Docs API to make changes to documents, primarily through batch updates."],["The API allows you to create, retrieve, and update Google Docs using various request methods like `documents.create`, `documents.get`, and `documents.batchUpdate`."],["Batch updates, using the `documents.batchUpdate` method, enable applying multiple changes atomically to a document, improving efficiency and ensuring data integrity."],["The guide provides detailed information about different types of batch update operations, including adding, updating, and deleting various document elements such as text, styles, images, and tables."],["Using batch updates can significantly improve performance and reduce API quota usage by grouping multiple requests into a single call."]]],[]]