Skip to main content

Get Total Certificates

GET 

https://public.api.mentaport.xyz/prod/v1/certificates/count

Optionally, you may pass projectId and certId parameters. If these parameters are not provided, the function will return all of your certificates.

Request

Query Parameters

    projectId string
    Example: 96b82a9a-585d-4628-9e61-d5fe0b9317dd

Header Parameters

    x-api-key string
    Example: {{_apiKeyDev}}

Responses

Successful response

Schema

    Authorization: http

    name: apikeyAuthtype: httpin: 
    import http.client

    conn = http.client.HTTPSConnection("public.api.mentaport.xyz")
    payload = ''
    headers = {
    'Accept': 'application/json'
    }
    conn.request("GET", "/prod/v1/certificates/count", payload, headers)
    res = conn.getresponse()
    data = res.read()
    print(data.decode("utf-8"))
    Request Collapse all
    Base URL
    https://public.api.mentaport.xyz/prod/v1
    Auth
    Parameters
    — query
    — header
    ResponseClear

    Click the Send API Request button above and see the response here!