This API is used for retrieving and retiring TIGR certificates. APIs require an OAuth Authentication token. To create API credentials, please reach out to the TIGR administrator.
TIGRS Registry Client API (1.0.0)
Download OpenAPI description
Overview
E-mail
Languages
Servers
https://tigrsregistry.apx.com:443/clientapi/
- https://tigrsregistry.apx.com:443/clientapi/api/ledger/holding
- curl
- JavaScript
- Node.js
- Python
- Java
- C#
- PHP
- Go
- Ruby
- R
- Payload
curl -i -X GET \
'https://tigrsregistry.apx.com/clientapi/api/ledger/holding?accountIds=string&vintageStart=2019-08-24T14%3A15%3A22Z&vintageEnd=2019-08-24T14%3A15%3A22Z&program=string&%24filter=string&%24orderby=string&%24skip=0&%24top=0' \
-H 'Authorization: YOUR_API_KEY_HERE'Success
The certificate serial number range
Example: "TIGR-1234-GT-SM-08-2024-321-1 to 66"
The certificate status: see documentation for possible values
Example: "RETIRED"
The country to which resource belongs as an ISO-2 code
Example: "GT"
The credit type: see documentation for possible values
Example: "TIGR"
The fuel type code: see documentation for possible values
Example: "HRR"
The fuel type description: see documentation for possible values
Example: "Hydroelectric - Run-of-River"
Additional retirement details
Example: "Retired for Green Energy Program"
The retirement reason code: see documentation for possible values
Example: "7"
The retirement reason description: see documentation for possible values
Example: "Meet Corporate Renewable Energy Goals"
The retirement type code: see documentation for possible values
Example: "OTH"
The retirement type description: see documentation for possible values
Example: "On Behalf of Corporate Retirement"
Response
application/json
{ "@count": 0, "countExceeded": true, "totalCount": 0, "value": [ { … } ] }
- https://tigrsregistry.apx.com:443/clientapi/api/ledger/retire
- curl
- JavaScript
- Node.js
- Python
- Java
- C#
- PHP
- Go
- Ruby
- R
- Payload
curl -i -X POST \
'https://tigrsregistry.apx.com/clientapi/api/ledger/retire?onBehalfOfAccountId=string' \
-H 'Authorization: YOUR_API_KEY_HERE' \
-H 'Content-Type: application/json' \
-d '{
"requests": [
{
"certificateSerialNumberRange": "TIGR-1234-GT-SM-08-2024-321-1 to 55",
"correlationId": "1",
"details": "Retired for Green Energy Program",
"emailNotification": "jdoe@acmecorp.com",
"onBehalfOfCorporateEntityId": "99",
"quantity": "55",
"reasonCode": "7",
"retirementCertificateType": "TIGR",
"retirementTypeCode": "OTH",
"subaccountId": "99",
"year": "2024"
}
]
}'Response
application/json
{ "responses": [ { … } ], "submissionId": "string" }