Update Aug 29th 2019: Hyperledger Composer has been deprecated. Please see the README for more information.

Hyperledger Composer Identity List Command

Composer Identity List


The composer identity list command lists all of the identities in a business network. See the task Listing all identities in a business network for a walkthrough of using this command or the API.

Syntax

$ composer identity list
composer identity list [options]

Options:
  --help                       Show help  [boolean]
  -v, --version                Show version number  [boolean]
  -c, --card                   The business network card to use [string] [required]

Options

--card, -c The business network card to use when listing identities. Example: admin@tutorial-network

Javascript API Example

const IdentityList = require('composer-cli').Identity.List;

let options = {
  card: 'admin@tutorial-network'
};

IdentityList.handler(options);