Bloqifi RESTful API documentation
  • The Next Generation Web³
  • Quick Start
  • Blog
  • Reference
    • API Reference
      • Authentication
      • Bloq
      • Payment
      • Transaction
      • Rates
    • Retrieval
      • Transaction ID
      • Web
      • Blob
      • Chunk
  • Stripe Metered Billing
    • API Reference
      • Subscribe
      • Check Usage
Powered by GitBook
On this page

Was this helpful?

  1. Reference
  2. Retrieval

Transaction ID

Get transaction ids from object id

Retrieve Transaction IDs

POST https://api.bloqifi.com/v0/txid

Headers

Name
Type
Description

Content-Type*

String

application/json

Request Body

Name
Type
Description

objectid*

Array

['123', '321']

{
  objectid: '635c2f05d709a3fdc833a786',
  txids: ['123', '321'],
  createdAt: '2022-10-28T21:07:25.214Z'
}

Take a look at how you might call this method:

fetch('https://api.bloqifi.com/v0/txid', {
  method: 'POST',
  headers: {
    'Content-Type': 'application/json'
  },
  body: JSON.stringify({
    objectid: [ '123', '321' ]
  })
})
.then(response => response.json())
.then(data => {
  console.log(data);
})
.catch(error => {
  console.log(error);
});
PreviousRetrievalNextWeb

Last updated 2 years ago

Was this helpful?