現在、Adobe Echosign APIを使用してテーブルのデータをフォーマットしています。出力は次のようになります。複数の配列から値を抽出する
{
"agreementId": "",
"events": [
{
"actingUserEmail": "",
"actingUserIpAddress": "",
"date": "date",
"description": "",
"participantEmail": "",
"type": "",
"versionId": ""
}
],
"locale": "",
"modifiable": false,
"name": "",
"nextParticipantSetInfos": [
{
"nextParticipantSetMemberInfos": [
{
"email": "",
"waitingSince": "date"
}
]
}
],
"participantSetInfos": [
{
"participantSetId": "",
"participantSetMemberInfos": [
{
"email": "",
"participantId": ""
}
],
"roles": [
""
],
"status": ""
}
],
"status": "",
"vaultingEnabled": false
}
私は複数の契約をループしており、それぞれを別々の配列として出力しています。
これはおそらく本当に基本的な質問ですが、どのように私は各配列を通過し、 'participantEmail'、 'name'と 'status'の値を抽出するでしょうか?
ありがとうございます!