/networks/{networkId}/members
http://managedblockchain.{region}.amazonaws.com/networks/{networkId}/members<p>Creates a member within a Managed Blockchain network.</p> <p>Applies only to Hyperledger Fabric.</p>
Path Parameters
The unique identifier of the network in which the member is created.
Body Params
The unique identifier of the invitation that is sent to the member to join the network.
A unique, case-sensitive identifier that you provide to ensure the idempotency of the operation. An idempotent operation completes no more than one time. This identifier is required only if you make a service request directly using an HTTP client. It is generated automatically if you use an Amazon Web Services SDK or the CLI.
<p>Configuration properties of the member.</p> <p>Applies only to Hyperledger Fabric.</p>
Responses
{
"success": true,
"data": {
"id": "abc123",
"created_at": "2025-01-01T00:00:00Z"
}
}{
"success": false,
"error": {
"code": "VALIDATION_ERROR",
"message": "Invalid request parameters"
}
}1curl --request POST \2 --url 'http://managedblockchain.{region}.amazonaws.com/networks/{networkId}/members' \3 --header 'accept: application/json' \4 --header 'content-type: application/json'1{2 "success": true,3 "data": {4 "id": "abc123",5 "created_at": "2025-01-01T00:00:00Z"6 }7}