René's URL Explorer Experiment


Title: Jackson error on parsing Smart Transfer Ticket creation response · Issue #112 · fireblocks/java-sdk · GitHub

Open Graph Title: Jackson error on parsing Smart Transfer Ticket creation response · Issue #112 · fireblocks/java-sdk

X Title: Jackson error on parsing Smart Transfer Ticket creation response · Issue #112 · fireblocks/java-sdk

Description: Hello, Observed this issue in SDK versions 12.1.0 and 12.0.0. Works fine in 11.2.0. Creating Smart Transfer Ticket on Fireblocks Sandbox env. According to Fireblocks Console, ticket is successfully created, but I receive Jackson exceptio...

Open Graph Description: Hello, Observed this issue in SDK versions 12.1.0 and 12.0.0. Works fine in 11.2.0. Creating Smart Transfer Ticket on Fireblocks Sandbox env. According to Fireblocks Console, ticket is successfully...

X Description: Hello, Observed this issue in SDK versions 12.1.0 and 12.0.0. Works fine in 11.2.0. Creating Smart Transfer Ticket on Fireblocks Sandbox env. According to Fireblocks Console, ticket is successfully...

Opengraph URL: https://github.com/fireblocks/java-sdk/issues/112

X: @github

direct link

Domain: patch-diff.githubusercontent.com


Hey, it has json ld scripts:
{"@context":"https://schema.org","@type":"DiscussionForumPosting","headline":"Jackson error on parsing Smart Transfer Ticket creation response","articleBody":"Hello,\n\nObserved this issue in SDK versions `12.1.0` and `12.0.0`. **Works fine in `11.2.0`.**\n\nCreating Smart Transfer Ticket on Fireblocks **Sandbox** env. According to Fireblocks Console, ticket is successfully created, but I receive Jackson exception in my code.\n\nCode sample:\n```\n@Produces\npublic Fireblocks create() {\n    var configurationOptions = new ConfigurationOptions()\n                .basePath(BasePath.Sandbox)\n                .apiKey(apiKey)\n                .secretKey(secretKey);\n    return new Fireblocks(configurationOptions);\n}\n\npublic void sample() {\n    try {\n        var request = new SmartTransferCreateTicket()\n            .type(SmartTransferCreateTicket.TypeEnum.ASYNC)\n            .createdByNetworkId(fmNetworkId)\n            .note(\"Test SDK 12.1.0\")\n            .externalRefId(\"externalRef\")\n            .submit(true)\n            .terms(\n                List.of(\n                    new SmartTransferCreateTicketTerm()\n                        .fromNetworkId(from)\n                        .toNetworkId(to)\n                        .asset(asset)\n                        .amount(amount);\n                )\n            );\n\n        var response = fireblocks.smartTransfer()\n            .createTicket(request, generateIdempotenceKey())\n            .get();\n        log.infof(\"Got response: '%s'\", response);\n    } catch (ApiException | ExecutionException | InterruptedException e) {\n        // breakpoint here\n    }\n}\n```\n\nException details from breakpoint:\n```\njava.util.concurrent.ExecutionException: com.fireblocks.sdk.ApiException: com.fasterxml.jackson.databind.exc.MismatchedInputException: Missing required creator property 'message' (index 0)\n at [Source: REDACTED (`StreamReadFeature.INCLUDE_SOURCE_IN_LOCATION` disabled); line: 1, column: 1177] (through reference chain: com.fireblocks.sdk.model.SmartTransferTicketResponse[\"message\"])\n```\n\nAnd some stacktrace for it:\n```\nCaused by: com.fireblocks.sdk.ApiException: com.fasterxml.jackson.databind.exc.MismatchedInputException: Missing required creator property 'message' (index 0)\n at [Source: REDACTED (`StreamReadFeature.INCLUDE_SOURCE_IN_LOCATION` disabled); line: 1, column: 1177] (through reference chain: com.fireblocks.sdk.model.SmartTransferTicketResponse[\"message\"])\n\tat com.fireblocks.sdk.api.SmartTransferApi.lambda$createTicket$2(SmartTransferApi.java:305)\n\tat java.base@21.0.1/java.util.concurrent.CompletableFuture$UniCompose.tryFire(CompletableFuture.java:1150)\n\tat java.base@21.0.1/java.util.concurrent.CompletableFuture$Completion.exec(CompletableFuture.java:483)\n\tat java.base@21.0.1/java.util.concurrent.ForkJoinTask.doExec(ForkJoinTask.java:387)\n\tat java.base@21.0.1/java.util.concurrent.ForkJoinPool$WorkQueue.topLevelExec(ForkJoinPool.java:1312)\n\tat java.base@21.0.1/java.util.concurrent.ForkJoinPool.scan(ForkJoinPool.java:1843)\n\tat java.base@21.0.1/java.util.concurrent.ForkJoinPool.runWorker(ForkJoinPool.java:1808)\n\tat java.base@21.0.1/java.util.concurrent.ForkJoinWorkerThread.run(ForkJoinWorkerThread.java:188)\nCaused by: com.fasterxml.jackson.databind.exc.MismatchedInputException: Missing required creator property 'message' (index 0)\n at [Source: UNKNOWN; line: 1, column: 1177] (through reference chain: com.fireblocks.sdk.model.SmartTransferTicketResponse[\"message\"])\n\tat com.fasterxml.jackson.databind.exc.MismatchedInputException.from(MismatchedInputException.java:59)\n\tat com.fasterxml.jackson.databind.DeserializationContext.reportInputMismatch(DeserializationContext.java:1808)\n\tat com.fasterxml.jackson.databind.deser.impl.PropertyValueBuffer._findMissing(PropertyValueBuffer.java:276)\n\tat com.fasterxml.jackson.databind.deser.impl.PropertyValueBuffer.getParameters(PropertyValueBuffer.java:207)\n\tat com.fasterxml.jackson.databind.deser.ValueInstantiator.createFromObjectWith(ValueInstantiator.java:301)\n\tat com.fasterxml.jackson.databind.deser.impl.PropertyBasedCreator.build(PropertyBasedCreator.java:267)\n\tat com.fasterxml.jackson.databind.deser.BeanDeserializer._deserializeUsingPropertyBased(BeanDeserializer.java:535)\n\tat com.fasterxml.jackson.databind.deser.BeanDeserializerBase.deserializeFromObjectUsingNonDefault(BeanDeserializerBase.java:1499)\n\tat com.fasterxml.jackson.databind.deser.BeanDeserializer.deserializeFromObject(BeanDeserializer.java:340)\n\tat com.fasterxml.jackson.databind.deser.BeanDeserializer.deserialize(BeanDeserializer.java:177)\n\tat com.fasterxml.jackson.databind.deser.DefaultDeserializationContext.readRootValue(DefaultDeserializationContext.java:342)\n\tat com.fasterxml.jackson.databind.ObjectMapper._readMapAndClose(ObjectMapper.java:4971)\n\tat com.fasterxml.jackson.databind.ObjectMapper.readValue(ObjectMapper.java:3887)\n\tat com.fasterxml.jackson.databind.ObjectMapper.readValue(ObjectMapper.java:3870)\n\tat com.fireblocks.sdk.api.SmartTransferApi.lambda$createTicket$2(SmartTransferApi.java:300)\n\t... 7 more\n```","author":{"url":"https://github.com/alexeyabar","@type":"Person","name":"alexeyabar"},"datePublished":"2025-09-11T12:53:33.000Z","interactionStatistic":{"@type":"InteractionCounter","interactionType":"https://schema.org/CommentAction","userInteractionCount":1},"url":"https://github.com/112/java-sdk/issues/112"}

route-pattern/_view_fragments/issues/show/:user_id/:repository/:id/issue_layout(.:format)
route-controllervoltron_issues_fragments
route-actionissue_layout
fetch-noncev2:e46624e1-7491-3c90-abb3-e7b5883c8891
current-catalog-service-hash81bb79d38c15960b92d99bca9288a9108c7a47b18f2423d0f6438c5b7bcd2114
request-idE0C0:21AE9A:89C1614:B9767A5:698CFC50
html-safe-noncebf303a8e4b000b85ff8f0213afc06f8d6f8ca8cdd0c32d1a7df09ad540a66247
visitor-payloadeyJyZWZlcnJlciI6IiIsInJlcXVlc3RfaWQiOiJFMEMwOjIxQUU5QTo4OUMxNjE0OkI5NzY3QTU6Njk4Q0ZDNTAiLCJ2aXNpdG9yX2lkIjoiODk3NTM2MTU4MTgyNzM0OTI4IiwicmVnaW9uX2VkZ2UiOiJpYWQiLCJyZWdpb25fcmVuZGVyIjoiaWFkIn0=
visitor-hmacb13c0b6017e75ede38b27952af4f7bbc3e0c0978843de17297f7c0d87b8c87e6
hovercard-subject-tagissue:3406436080
github-keyboard-shortcutsrepository,issues,copilot
google-site-verificationApib7-x98H0j5cPqHWwSMm6dNU4GmODRoqxLiDzdx9I
octolytics-urlhttps://collector.github.com/github/collect
analytics-location///voltron/issues_fragments/issue_layout
fb:app_id1401488693436528
apple-itunes-appapp-id=1477376905, app-argument=https://github.com/_view_fragments/issues/show/fireblocks/java-sdk/112/issue_layout
twitter:imagehttps://opengraph.githubassets.com/8641f99881418a77b9c0d90635afdea28a2dbffcc19b5fe147129da6710d342f/fireblocks/java-sdk/issues/112
twitter:cardsummary_large_image
og:imagehttps://opengraph.githubassets.com/8641f99881418a77b9c0d90635afdea28a2dbffcc19b5fe147129da6710d342f/fireblocks/java-sdk/issues/112
og:image:altHello, Observed this issue in SDK versions 12.1.0 and 12.0.0. Works fine in 11.2.0. Creating Smart Transfer Ticket on Fireblocks Sandbox env. According to Fireblocks Console, ticket is successfully...
og:image:width1200
og:image:height600
og:site_nameGitHub
og:typeobject
og:author:usernamealexeyabar
hostnamegithub.com
expected-hostnamegithub.com
None09447bc7ef1f50c40a646f48e82dfbd31133c28c940bfee5a938619ac0191038
turbo-cache-controlno-preview
go-importgithub.com/fireblocks/java-sdk git https://github.com/fireblocks/java-sdk.git
octolytics-dimension-user_id40918269
octolytics-dimension-user_loginfireblocks
octolytics-dimension-repository_id653280893
octolytics-dimension-repository_nwofireblocks/java-sdk
octolytics-dimension-repository_publictrue
octolytics-dimension-repository_is_forkfalse
octolytics-dimension-repository_network_root_id653280893
octolytics-dimension-repository_network_root_nwofireblocks/java-sdk
turbo-body-classeslogged-out env-production page-responsive
disable-turbofalse
browser-stats-urlhttps://api.github.com/_private/browser/stats
browser-errors-urlhttps://api.github.com/_private/browser/errors
release02f0047575af3d968e1dea9cf0b6015a852cddfe
ui-targetfull
theme-color#1e2327
color-schemelight dark

Links:

Skip to contenthttps://patch-diff.githubusercontent.com/fireblocks/java-sdk/issues/112#start-of-content
https://patch-diff.githubusercontent.com/
Sign in https://patch-diff.githubusercontent.com/login?return_to=https%3A%2F%2Fgithub.com%2Ffireblocks%2Fjava-sdk%2Fissues%2F112
GitHub CopilotWrite better code with AIhttps://github.com/features/copilot
GitHub SparkBuild and deploy intelligent appshttps://github.com/features/spark
GitHub ModelsManage and compare promptshttps://github.com/features/models
MCP RegistryNewIntegrate external toolshttps://github.com/mcp
ActionsAutomate any workflowhttps://github.com/features/actions
CodespacesInstant dev environmentshttps://github.com/features/codespaces
IssuesPlan and track workhttps://github.com/features/issues
Code ReviewManage code changeshttps://github.com/features/code-review
GitHub Advanced SecurityFind and fix vulnerabilitieshttps://github.com/security/advanced-security
Code securitySecure your code as you buildhttps://github.com/security/advanced-security/code-security
Secret protectionStop leaks before they starthttps://github.com/security/advanced-security/secret-protection
Why GitHubhttps://github.com/why-github
Documentationhttps://docs.github.com
Bloghttps://github.blog
Changeloghttps://github.blog/changelog
Marketplacehttps://github.com/marketplace
View all featureshttps://github.com/features
Enterpriseshttps://github.com/enterprise
Small and medium teamshttps://github.com/team
Startupshttps://github.com/enterprise/startups
Nonprofitshttps://github.com/solutions/industry/nonprofits
App Modernizationhttps://github.com/solutions/use-case/app-modernization
DevSecOpshttps://github.com/solutions/use-case/devsecops
DevOpshttps://github.com/solutions/use-case/devops
CI/CDhttps://github.com/solutions/use-case/ci-cd
View all use caseshttps://github.com/solutions/use-case
Healthcarehttps://github.com/solutions/industry/healthcare
Financial serviceshttps://github.com/solutions/industry/financial-services
Manufacturinghttps://github.com/solutions/industry/manufacturing
Governmenthttps://github.com/solutions/industry/government
View all industrieshttps://github.com/solutions/industry
View all solutionshttps://github.com/solutions
AIhttps://github.com/resources/articles?topic=ai
Software Developmenthttps://github.com/resources/articles?topic=software-development
DevOpshttps://github.com/resources/articles?topic=devops
Securityhttps://github.com/resources/articles?topic=security
View all topicshttps://github.com/resources/articles
Customer storieshttps://github.com/customer-stories
Events & webinarshttps://github.com/resources/events
Ebooks & reportshttps://github.com/resources/whitepapers
Business insightshttps://github.com/solutions/executive-insights
GitHub Skillshttps://skills.github.com
Documentationhttps://docs.github.com
Customer supporthttps://support.github.com
Community forumhttps://github.com/orgs/community/discussions
Trust centerhttps://github.com/trust-center
Partnershttps://github.com/partners
GitHub SponsorsFund open source developershttps://github.com/sponsors
Security Labhttps://securitylab.github.com
Maintainer Communityhttps://maintainers.github.com
Acceleratorhttps://github.com/accelerator
Archive Programhttps://archiveprogram.github.com
Topicshttps://github.com/topics
Trendinghttps://github.com/trending
Collectionshttps://github.com/collections
Enterprise platformAI-powered developer platformhttps://github.com/enterprise
GitHub Advanced SecurityEnterprise-grade security featureshttps://github.com/security/advanced-security
Copilot for BusinessEnterprise-grade AI featureshttps://github.com/features/copilot/copilot-business
Premium SupportEnterprise-grade 24/7 supporthttps://github.com/premium-support
Pricinghttps://github.com/pricing
Search syntax tipshttps://docs.github.com/search-github/github-code-search/understanding-github-code-search-syntax
documentationhttps://docs.github.com/search-github/github-code-search/understanding-github-code-search-syntax
Sign in https://patch-diff.githubusercontent.com/login?return_to=https%3A%2F%2Fgithub.com%2Ffireblocks%2Fjava-sdk%2Fissues%2F112
Sign up https://patch-diff.githubusercontent.com/signup?ref_cta=Sign+up&ref_loc=header+logged+out&ref_page=%2F%3Cuser-name%3E%2F%3Crepo-name%3E%2Fvoltron%2Fissues_fragments%2Fissue_layout&source=header-repo&source_repo=fireblocks%2Fjava-sdk
Reloadhttps://patch-diff.githubusercontent.com/fireblocks/java-sdk/issues/112
Reloadhttps://patch-diff.githubusercontent.com/fireblocks/java-sdk/issues/112
Reloadhttps://patch-diff.githubusercontent.com/fireblocks/java-sdk/issues/112
fireblocks https://patch-diff.githubusercontent.com/fireblocks
java-sdkhttps://patch-diff.githubusercontent.com/fireblocks/java-sdk
Notifications https://patch-diff.githubusercontent.com/login?return_to=%2Ffireblocks%2Fjava-sdk
Fork 5 https://patch-diff.githubusercontent.com/login?return_to=%2Ffireblocks%2Fjava-sdk
Star 15 https://patch-diff.githubusercontent.com/login?return_to=%2Ffireblocks%2Fjava-sdk
Code https://patch-diff.githubusercontent.com/fireblocks/java-sdk
Issues 11 https://patch-diff.githubusercontent.com/fireblocks/java-sdk/issues
Pull requests 6 https://patch-diff.githubusercontent.com/fireblocks/java-sdk/pulls
Actions https://patch-diff.githubusercontent.com/fireblocks/java-sdk/actions
Projects 0 https://patch-diff.githubusercontent.com/fireblocks/java-sdk/projects
Security 0 https://patch-diff.githubusercontent.com/fireblocks/java-sdk/security
Insights https://patch-diff.githubusercontent.com/fireblocks/java-sdk/pulse
Code https://patch-diff.githubusercontent.com/fireblocks/java-sdk
Issues https://patch-diff.githubusercontent.com/fireblocks/java-sdk/issues
Pull requests https://patch-diff.githubusercontent.com/fireblocks/java-sdk/pulls
Actions https://patch-diff.githubusercontent.com/fireblocks/java-sdk/actions
Projects https://patch-diff.githubusercontent.com/fireblocks/java-sdk/projects
Security https://patch-diff.githubusercontent.com/fireblocks/java-sdk/security
Insights https://patch-diff.githubusercontent.com/fireblocks/java-sdk/pulse
New issuehttps://patch-diff.githubusercontent.com/login?return_to=https://github.com/fireblocks/java-sdk/issues/112
New issuehttps://patch-diff.githubusercontent.com/login?return_to=https://github.com/fireblocks/java-sdk/issues/112
Jackson error on parsing Smart Transfer Ticket creation responsehttps://patch-diff.githubusercontent.com/fireblocks/java-sdk/issues/112#top
https://github.com/alexeyabar
https://github.com/alexeyabar
alexeyabarhttps://github.com/alexeyabar
on Sep 11, 2025https://github.com/fireblocks/java-sdk/issues/112#issue-3406436080
https://github.com
Termshttps://docs.github.com/site-policy/github-terms/github-terms-of-service
Privacyhttps://docs.github.com/site-policy/privacy-policies/github-privacy-statement
Securityhttps://github.com/security
Statushttps://www.githubstatus.com/
Communityhttps://github.community/
Docshttps://docs.github.com/
Contacthttps://support.github.com?tags=dotcom-footer

Viewport: width=device-width


URLs of crawlers that visited me.