Contents

GET /reserves-attest/$RESERVE_PUB#

Request list of available KYC attributes about the owner of a reserve. Used as a preliminary step to find out which subsets of attributes the exchange could provide signatures over.

Response:

200 OK:

The exchange responds with a ReserveKycAttributes object.

404 Not found:

The reserve key does not belong to a reserve known to the exchange.

409 Conflict:

The exchange does not have the requested KYC information.

Details:

interface ReserveKycAttributes {
  // Array of KYC attributes available.  The attribute names
  // listed are expected to be from the respective GANA
  // registry.
  details: string[];
}