Skip to content

구매 횟수 내보내기

get

/purchases/quantity_series

이 엔드포인트를 사용하여 시간 범위 동안 앱의 총 구매 횟수를 반환합니다.

필수 구성 요소

이 엔드포인트를 사용하려면 purchases.quantity_series 권한이 있는 API 키가 필요합니다.

사용량 제한

요청 매개변수

예시 요청

1
2
curl --location --request GET 'https://rest.iad-01.braze.com/purchases/quantity_series?length=100' \
--header 'Authorization: Bearer YOUR-REST-API-KEY'

응답

1
2
3
4
5
6
7
8
9
10
11
12
Content-Type: application/json
Authorization: Bearer YOUR-REST-API-KEY
{
  "message": (required, string) the status of the export, returns 'success' when completed without errors,
  "data" : [
    {
      "time" : (string) the date as ISO 8601 date,
      "purchase_quantity" : (int) the number of items purchased in the time period
      },
    ...
  ]
}
이 페이지가 얼마나 도움이 되었나요?
New Stuff!