Unsubscribe from an Event
delete
/restproxy/api/v2/channels/{channelName}/event-subscriptions
Unsubscribe from an event.
Request
Supported Media Types
- application/json
Path Parameters
-
channelName(required): string
ID of the channel
Query Parameters
-
role: string
Name of Hyperledger Fabric enrollment to be used
-
subscription-id: string
ID of the subscription when operation succeeds
-
user-id: string
User name. It should be the same as the user defined in basic auth.
Response
Supported Media Types
- application/json
200 Response
Operation successful
Root Schema : schema
Type:
Show Source
object-
error:
string
-
result:
array result
-
returnCode(required):
string
Allowed Values:
[ "Success", "Failure" ]
Nested Schema : UnEventSubscription
Type:
Show Source
object-
errorMessage:
string
-
status:
string
-
subid(required):
string
ID of the subscription when successful
400 Response
Bad Request
Headers
-
opc-request-id: string
Unique Oracle-assigned identifier for the request. If you need to contact Oracle about a particular request, please provide the request ID.
Root Schema : Error
Type:
objectError Information.
Show Source
-
code(required):
string
A short error code that defines the error, meant for programmatic parsing.
-
message(required):
string
A human-readable error string.
401 Response
Unauthorized
Headers
-
opc-request-id: string
Unique Oracle-assigned identifier for the request. If you need to contact Oracle about a particular request, please provide the request ID.
Root Schema : Error
Type:
objectError Information.
Show Source
-
code(required):
string
A short error code that defines the error, meant for programmatic parsing.
-
message(required):
string
A human-readable error string.
403 Response
Forbidden
404 Response
Not Found
Headers
-
opc-request-id: string
Unique Oracle-assigned identifier for the request. If you need to contact Oracle about a particular request, please provide the request ID.
Root Schema : Error
Type:
objectError Information.
Show Source
-
code(required):
string
A short error code that defines the error, meant for programmatic parsing.
-
message(required):
string
A human-readable error string.
500 Response
Internal Server Error
Headers
-
opc-request-id: string
Unique Oracle-assigned identifier for the request. If you need to contact Oracle about a particular request, please provide the request ID.
Root Schema : Error
Type:
objectError Information.
Show Source
-
code(required):
string
A short error code that defines the error, meant for programmatic parsing.
-
message(required):
string
A human-readable error string.
Examples
This endpoint is used to unsubscribe from an event.
The following example shows how to unsubscribe from an event by submitting a DELETE request on the REST resource using cURL.
curl -v -X DELETE \ '<restproxy of your blockchain instance>/api/v2/channels/<channelName>/event-subscriptions?role=<role>&user-id=<username>&subscription-id=<subscription ID>&channelName=<channel_name>' \ -H "Authorization: Bearer <OAuth_access_ token>"
For example,
curl -v -X DELETE \ 'https://myvm.oracle.com:10000/restproxy/api/v2/channels/default/event-subscriptions?role=myinstance_defaultuser&user-id=user1&subscription-id=testuser1-dc28b77c-7e58-4b09-ae23-b2c01fa01b70&channelId=default' \ -H "Authorization: Bearer mF_9.B5f-4.1JqM"
Note:
You can find the REST proxy value of your blockchain instance from the Nodes tab of your instance console.Example of the Response Body
The following example shows the contents of the response body in JSON format:
{
"returnCode": "Success",
"error": "",
"result": {
"subid": "user1-dc28b77c-7e58-4b09-ae23-b2c01fa01b70",
"status": 200
}
}