cURL
curl --request GET \ --url https://openapi.pluuug.com/v1/inquiry/{inquiry_id}/email_reply_history \ --header 'X-API-Key: <api-key>' \ --header 'X-Signature: <api-key>'
{ "next": "<string>", "previous": "<string>", "results": [ { "id": 123, "title": "<string>", "fromEmail": "jsmith@example.com", "toSet": [ { "toEmail": "jsmith@example.com" } ], "ccSet": [ { "ccEmail": "jsmith@example.com" } ], "isUnread": true, "receivedAt": "2023-11-07T05:31:56Z", "created": "2023-11-07T05:31:56Z" } ] }
의뢰에 대해 수신된 답장 이메일 이력을 조회합니다. 발신자(from), 수신자(to), 참조(cc), 읽지 않음 여부(is_unread) 정보를 포함합니다.
HMAC-SHA256 방식으로 body를 secret key로 해싱하여 생성한 서명을 넣어야 합니다. 서버는 X-API-Key와 대응되는 secret key로 서명을 검증합니다.
Pagination을 위한 커서
한번에 조회할 데이터의 개수 (limit)
Show child attributes