get-reserves-attest-RESERVE_PUB.rst (814B)
1 .. http:get:: /reserves-attest/$RESERVE_PUB 2 3 Request list of available KYC attributes about the owner of a reserve. 4 Used as a preliminary step to find out which subsets of attributes the 5 exchange could provide signatures over. 6 7 **Response:** 8 9 :http:statuscode:`200 OK`: 10 The exchange responds with a `ReserveKycAttributes` object. 11 :http:statuscode:`404 Not found`: 12 The reserve key does not belong to a reserve known to the exchange. 13 :http:statuscode:`409 Conflict`: 14 The exchange does not have the requested KYC information. 15 16 **Details:** 17 18 .. ts:def:: ReserveKycAttributes 19 20 interface ReserveKycAttributes { 21 // Array of KYC attributes available. The attribute names 22 // listed are expected to be from the respective GANA 23 // registry. 24 details: string[]; 25 }