Method: inventory.partners.feeds.record.batchPush

지정된 피드 유형의 레코드를 삽입하거나 업데이트합니다. 잘못된 형식의 요청과 같은 기본 유효성 검사만 수행한 후 적절한 응답이 파트너에게 즉시 반환됩니다. Google은 요청에 대한 비즈니스 로직 유효성 검사를 비동기식으로 수행합니다. 이러한 일괄 호출이 원자성을 보장하지 않습니다.

HTTP 요청

POST https://mapsbooking.googleapis.com/v1alpha/inventory/{parent=partners/*/feeds/*}/record:batchPush

URL은 gRPC 트랜스코딩 문법을 사용합니다.

경로 매개변수

매개변수
parent

string

partners/{partner_id}/feeds/{feed_name} 형식으로 된 리소스 이름입니다.

요청 본문

요청 본문에는 다음과 같은 구조의 데이터가 포함됩니다.

JSON 표현
{
  "records": [
    {
      object (GenericRecord)
    }
  ]
}
필드
records[]

object (GenericRecord)

삽입 또는 업데이트할 레코드입니다. API 호출 1회에 최대 1,000개의 레코드가 허용됩니다.

응답 본문

성공한 경우 응답 본문은 비어 있습니다.

승인 범위

다음 OAuth 범위가 필요합니다.

  • https://www.googleapis.com/auth/mapsbooking

GenericRecord

URL 요청에 언급된 피드 유형의 레코드입니다.

JSON 표현
{
  "generationTimestamp": string,

  // Union field record_type can be only one of the following:
  "dataRecord": string,
  "protoRecord": {
    "@type": string,
    field1: ...,
    ...
  }
  // End of list of possible types for union field record_type.
}
필드
generationTimestamp

string (Timestamp format)

필수 항목입니다. 이 타임스탬프는 인벤토리 업데이트의 순서를 올바르게 지정하는 데 사용됩니다.

RFC3339 UTC 'Zulu' 형식의 타임스탬프입니다(나노초 단위, 소수점 이하 9자리). 예를 들면 "2014-10-02T15:01:23Z""2014-10-02T15:01:23.045123456Z"입니다.

통합 필드 record_type. 다양한 유형의 피드 (ndjson, proto 기반 등) 캡슐화 record_type은 다음 중 하나여야 합니다.
dataRecord

string (bytes format)

proto 기반이 아닌 피드의 경우

base64 인코딩 문자열입니다.

protoRecord

object

proto 기반 피드의 경우

임의 유형의 필드를 포함하는 객체입니다. 추가 필드 "@type"은 유형을 식별하는 URI를 포함합니다. 예: { "id": 1234, "@type": "types.example.com/standard/id" }