v11.1.0 Release
Summary
- Made the structure of the result of request
GET oracle/participants/{Type}/{ID}?partySubIdOrType={SubId}
to be consistent with the result ofGET oracle/participants/{Type}/{ID}
i.e.
{
partyList: [ { fspId: 'testfsp2', currency: 'XOF', partySubIdOrType: undefined } ]
}
AND
{
partyList: [
{ fspId: 'testfsp1', currency: 'XOF', partySubIdOrType: '10' },
{ fspId: 'testfsp1', currency: 'XOF', partySubIdOrType: '20' },
{ fspId: 'testfsp1', currency: 'XOF', partySubIdOrType: '30' },
{ fspId: 'testfsp1', currency: 'XOF', partySubIdOrType: '40' }
]
}
- Modified
POST oracle/participants/{Type}/{ID}
to allow multiple records to be created based on differentpartySubIdOrType
. Earlier it was allowing to create only 1 record per{Type}
and{ID}
ignoringpartySubIdOrType