프로
엔터프라이즈
1000회/분

이메일 상세 통계 조회

이메일의 상세 통계(발송 성공한 구독자 목록, 오픈한 구독자 목록 등)를 조회합니다.

Path Parameters
  • id
    Type: integer
    required

    이메일 아이디

Query Parameters
  • offset
    Type: integer
    min:  
    0

    현재 데이터 조회가 시작되는 위치

  • limit
    Type: integer
    min:  
    1
    max:  
    1000

    한 번에 가져올 데이터의 최대 개수

Responses
  • application/json
  • application/json
Request Example for get/emails/{id}/logs
curl 'https://api.stibee.com/v2/emails/1/logs?offset=0&limit=20' \
  --header 'AccessToken: YOUR_SECRET_TOKEN'
{
  "total": 8,
  "offset": 0,
  "limit": 8,
  "items": [
    {
      "id": 1,
      "subscriber": "gildong.go@stibee.com",
      "action": "P",
      "value": "",
      "value2": "250\nok",
      "createdTime": "2024-07-23T18:43:08+09:00"
    }
  ]
}