GetMyDSettlement » 이력 » 개정판 18
개정판 17 (이름없음, 2021/06/10 05:59) → 개정판 18/19 (이름없음, 2021/06/10 06:31)
h1. %{color: #000000;}GetMyDSettlement%
%{color: #000000;} <notextile></notextile>*매달* MyD(개인데이터) 거래 시 사용자에게 지급된 리워드, snplab의 수입 기록 리스트를 *전체 조회*<notextile></notextile>합니다.%
<pre><code class="java">
getMyDSettlement(
did: String
): MyDSettlementResponse
</code></pre>
---
*did*
| %{color: #000000;}field% | %{color: #000000;}type% | %{color: #000000;}description% |
| %{color: #000000;}did% | %{color: #000000;}String% | %{color: #000000;}snplab의 did% |
*%{color: #000000;}MyDSettlementResponse%*
| %{color: #000000;}field% | %{color: #000000;}type% | %{color: #000000;}description% | note |
| %{color: #000000;}command% | %{color: #000000;}String% | %{color: #000000;}요청Command 유형% | %{color: #000000;}값: rewardDebt% |
| %{color: #000000;}result% | %{color: #000000;}[MyDSettlementResult]% | | |
*%{color: #000000;}MyDSettlementResult%*
| %{color: #000000;}field% | %{color: #000000;}type% | %{color: #000000;}description% |
| %{color: #000000;}countMonth% | %{color: #000000;}Int% | %{color: #000000;}월% |
| %{color: #000000;}countYear% | %{color: #000000;}Int% | %{color: #000000;}년% |
| %{color: #000000;}didCount% | %{color: #000000;}Int% | %{color: #000000;}did개수% |
| %{color: #000000;}id% | %{color: #000000;}Int% | %{color: #000000;}번호% |
| %{color: #000000;}lastUpdate% | %{color: #000000;}String% | %{color: #000000;}최근 업테이트 날짜% |
| %{color: #000000;}rewardAmount% | %{color: #000000;}Int% | %{color: #000000;}reward 양% |
---
*%{color: #000000;}Request Example%*
<pre>
query{
getMyDSettlement(did:"NfoPEFaG1adkCpijR85L66"){
command
result{
lastUpdate
countYear
id
rewardAmount
didCount
countMonth
}
}
}
</pre>
*%{color: #000000;}Response Example%*
<pre>
{
"data": {
"getMyDSettlement": {
"command": "rewardDebt",
"result": [
{
"lastUpdate": "2021-01-31T14:50Z",
"countYear": 2021,
"id": 7,
"rewardAmount": 1840,
"didCount": 806,
"countMonth": 1
},
{
"lastUpdate": "2021-02-28T14:50Z",
"countYear": 2021,
"id": 8,
"rewardAmount": 0,
"didCount": 806,
"countMonth": 2
},
{
"lastUpdate": "2021-03-31T14:50Z",
"countYear": 2021,
"id": 85,
"rewardAmount": 3978735,
"didCount": 806,
"countMonth": 3
},
{
"lastUpdate": "2021-04-30T14:50Z",
"countYear": 2021,
"id": 260,
"rewardAmount": 1504427013,
"didCount": 806,
"countMonth": 4
},
{
"lastUpdate": "2021-05-31T14:50Z",
"countYear": 2021,
"id": 385,
"rewardAmount": 1509552913,
"didCount": 806,
"countMonth": 5
},
{
"lastUpdate": "2021-06-01T14:50Z",
"countYear": 2021,
"id": 389,
"rewardAmount": 1509554113,
"didCount": 806,
"countMonth": 6
}
]
}
}
}
</pre>