Skip to content

Latest commit

 

History

History
49 lines (43 loc) · 1.29 KB

returns-hedera-id-for-specific-module.md

File metadata and controls

49 lines (43 loc) · 1.29 KB

Returns Hedera ID for specific Module

{% swagger method="get" path="" baseUrl="/modules/{uuid}/export/message" summary="Returns Hedera message ID for the specified published module." %} {% swagger-description %} Returns the Hedera message ID for the specified module published onto IPFS. Only users with the Standard Registry role are allowed to make the request. {% endswagger-description %}

{% swagger-parameter in="path" name="uuid" type="String" required="true" %} Selected module ID. {% endswagger-parameter %}

{% swagger-response status="200: OK" description="Successful Operation" %}

{
    content:
            application/json:
              schema:
                $ref: '#/components/schemas/ExportModule'
}

{% endswagger-response %}

{% swagger-response status="401: Unauthorized" description="Unauthorized" %}

{
    // Response
}

{% endswagger-response %}

{% swagger-response status="403: Forbidden" description="Forbidden" %}

{
    // Response
}

{% endswagger-response %}

{% swagger-response status="500: Internal Server Error" description="Internal Server Error" %}

{
    content:
            application/json:
              schema:
                $ref: '#/components/schemas/Error'
}

{% endswagger-response %} {% endswagger %}