/networks/{networkId}/proposals/{proposalId}/votes
http://managedblockchain.{region}.amazonaws.com/networks/{networkId}/proposals/{proposalId}/votes<p>Casts a vote for a specified <code>ProposalId</code> on behalf of a member. The member to vote as, specified by <code>VoterMemberId</code>, must be in the same Amazon Web Services account as the principal that calls the action.</p> <p>Applies only to Hyperledger Fabric.</p>
Path Parameters
The unique identifier of the network.
The unique identifier of the proposal.
Body Params
The value of the vote.
The unique identifier of the member casting the vote.
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}/proposals/{proposalId}/votes' \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}