For the complete documentation index, see llms.txt. This page is also available as Markdown.

ping()

Contact the Xumm platform to check for connectivity and valid auth.

The ping method allows you to verify API access (valid credentials) and returns some info on your XUMM APP:

const pong = await Sdk.ping();

Returns <ApplicationDetails>:

{
  quota: {},
  application: {
    uuidv4: '00000000-1111-2222-3333-aaaaaaaaaaaa',
    name: 'My XUMM APP',
    webhookurl: '',
    disabled: 0
  },
  call: { uuidv4: 'bbbbbbbb-cccc-dddd-eeee-111111111111' }
}

Last updated

Was this helpful?