> For the complete documentation index, see [llms.txt](https://lumiwavelab.gitbook.io/inno-platform-doc-kr/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://lumiwavelab.gitbook.io/inno-platform-doc-kr/reference/api-reference/inno-market/webhook/webhook-4.md).

# WebHook 응답 정보

* App에 신규 NFT 등록

```
{
  "message" : "NEW_NFT"
  "value" : {
    "nft_pack_id" : 100,
    "nft_pack_name" : "good game nft"
    "effect" : "[{\"app_id\":\"2\",\"description\":\"Purchasing Labyrinth Fat #2 increases HP 1000 and MP 1000 synergy.\",\"properties\":[{\"trait_type\":\"HP\",\"value\":1000},{\"trait_type\":\"MP\",\"value\":1000}]},{\"app_id\":\"1\",\"description\":\"Purchasing PoringMerge Fat #2 increases HP 2000 and MP 4000 synergy.\",\"properties\":[{\"trait_type\":\"HP\",\"value\":2000},{\"trait_type\":\"MP\",\"value\":4000}]}]"
  }
}
```

* Effect 변경

```
{
  "message" : "MOD_NFT"
  "value" : {
    "nft_pack_id" : 100,
    "nft_pack_name" : "good game nft"
    "effect" : "[{\"app_id\":\"2\",\"description\":\"Purchasing Labyrinth Fat #2 increases HP 1000 and MP 1000 synergy.\",\"properties\":[{\"trait_type\":\"HP\",\"value\":1000},{\"trait_type\":\"MP\",\"value\":1000}]},{\"app_id\":\"1\",\"description\":\"Purchasing PoringMerge Fat #2 increases HP 2000 and MP 4000 synergy.\",\"properties\":[{\"trait_type\":\"HP\",\"value\":2000},{\"trait_type\":\"MP\",\"value\":4000}]}]"
  }
}
```

* Member에게 NFT 추가

```
{
  "message" : "MEMBER_NFT_ADD"
  "value" : {
    "au_id" : 5,
    "nft_id" : 101,
    "nft_pack_id" : 100,
    "inno_id" : "ABCE!@#$"
  }
}
```

* Member에게 NFT 제거\
  \- NFT 합성시 합성 재료가 소각(BURN)되었을때 알

```
{
  "message" : "MEMBER_NFT_SUB"
  "value" : {
    "au_id" : 5,
    "nft_id" : 101,
    "nft_pack_id" : 100,
    "inno_id" : "ABCE!@#$"
  }
}
```

* Member에게 합성 결과물 NFT 추가\
  \- NFT 합성 후 최종 합성 결과물이 추가 되었음을 알림

```
{
  "message" : "MEMBER_NFT_MERGE_ADD"
  "value" : {
    "au_id" : 5,
    "nft_id" : 101,
    "nft_pack_id" : 100,
    "inno_id" : "ABCE!@#$"
  }
}
```
