Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

개요

매체사 서비스를 탈퇴한 유저의 개인정보 처리를 위해 버즈빌에 유저 데이터 파기 요청을 보내는 API입니다.

...

Code Block
languagejson
{
  "Content-Type": "application/json",
  "Authorization": "Token 000980073e0cae95b29c45deb824ce0a76390446"
}
  • tech-support@buzzvilhelp@buzzvil.com로 token 생성 요청

Request Body (application/json)

  • json의 root type은 list [ ]

  • list 바로 밑의 데이터는 object { }

  • object는 아래와 같이 구성

    • key: app_id , value: 매체사가 가진 app_id

    • key: user_ids, value: 삭제하려는 user_id의 lis list

Example

Code Block
languagejson
[
  {
    "app_id": 10029111,
    "user_ids": [ "user_id_1", "user_id_2", "user_id_3"]
  },
  {
    "app_id": 11192852,
    "user_ids": [ "user_id_5", "user_id_4", "user_id_1"]
  }
]

...