We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
/transactions/count/{id}
The paths I've tried https://mainnet.aeternity.io/mdw/v3/transactions/count/ak_2afpJzgHcx9ckQ3FwQngK51f8A9hTCX4tSpf6u8jzGqFaoqorf https://mainnet.aeternity.io/mdw/v3/transactions/count/dcg.chain https://mainnet.aeternity.io/mdw/v3/transactions/count/ct_1RiXDD3BxVsw5x14JhwCq5hPy55LZ2xN4KBL8kUHbArEDhVNS https://mainnet.aeternity.io/mdw/v3/transactions/count/ok_qJZPXvWPC7G9kFVEqNjj9NAmwMsQcpRu6E3SSCvCQuwfqpMtN in all cases it fails with 404, "no such route", I expect to get transactions counts instead 🤷♀️
The text was updated successfully, but these errors were encountered:
You need to use /v3/transactions/count?id=ak_... instead for this one
/v3/transactions/count?id=ak_...
Sorry, something went wrong.
It really works this way! So, the issue is in open api definition, id is a path parameter there
id
"/transactions/count/{id}": { "get": { "deprecated": false, "description": "Get transactions count and its type for given aeternity ID.", "operationId": "GetTransactionsCountById", "parameters": [ { "description": "The ID of the address/name/oracle/etc", "in": "path", "name": "id", "required": true, "schema": { "type": "string", "x-example": "ak_g5vQK6beY3vsTJHH7KBusesyzq9WMdEYorF8VyvZURXTjLnxT" } } ], "responses": { "200": { ...
vatanasov
No branches or pull requests
The paths I've tried
https://mainnet.aeternity.io/mdw/v3/transactions/count/ak_2afpJzgHcx9ckQ3FwQngK51f8A9hTCX4tSpf6u8jzGqFaoqorf
https://mainnet.aeternity.io/mdw/v3/transactions/count/dcg.chain
https://mainnet.aeternity.io/mdw/v3/transactions/count/ct_1RiXDD3BxVsw5x14JhwCq5hPy55LZ2xN4KBL8kUHbArEDhVNS
https://mainnet.aeternity.io/mdw/v3/transactions/count/ok_qJZPXvWPC7G9kFVEqNjj9NAmwMsQcpRu6E3SSCvCQuwfqpMtN
in all cases it fails with 404, "no such route", I expect to get transactions counts instead 🤷♀️
The text was updated successfully, but these errors were encountered: