Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Group

Field

Source Data

fio_data

request_id

fio_datarequest_requestidid

fio_data

timestamp

transactionstimestamp

fio_data

payer_account

handlesaccount

fio_data

payee_account

handlesaccount

fio_data

payee_handle

fio_datapayee_handle

fio_data

payer_handle

fio_datapayer_handle

fio_data

content

fio_datacontent

fio_data

payee_pub_key

fio_datapayee_pub_key

fio_data

payer_pub_key

fio_datapayer_pub_key

fio_data

status

fio_datastatus

fio_data

transaction_id

transactionsid

pagination

limit

Supplied limit

pagination

offset

Supplied offset

pagination

total_records

Total number of transactions which meet the criteria

pagination

next_offset

Offset to supply for next set of records: supplied offset + limit

pagination

previous_offset

Offset to supply for previous set of records: supplied offset - limit

...

Code Block
languagejson
{
	"fio_data": [
		{
			"request_id": 88,
			"timestamp": "2020-03-13T19:52:08",
			"payee_account": "xghrmfdenyu5",
			"payer_account": "1hpxnziaw2ec",
			"payee_handle": "pawel@fiotestnet",
			"payer_handle": "pawel@person",
			"content": "v6Kvk+CvQBGua4V1YpYjBekOzqA9LHWFfKXhfBnhewdGGm5PhPbwC8YQAIISpu/4mGDGR9JhCkyxLFH42Ei/EpSlUUsLD+3H5ckqQm9xFQc+lZdeOW9+6sMnePLsVTGvGF55Hqd1CE3xZaj6OjBz9A==",
			"payee_pub_key": "FIO8h1Aan6DZJsFjH91BGsQfNt2FsYbVyKeXFETNvYtTW9vaU81ay",
			"payer_pub_key": "FIO55BB3WmX7F1VDX7s8LjevJrU8g9G9ptpAmoZu7szYYBw19EZW4",
			"status": "sent_to_blockchain",
			"transaction_id": "d3dcd291eb7caadab12f2b9bcacdc5df6b8a5c1455072d9454a3b43956677b6e"
		}
	],
	"pagination": {
		"limit": 100,
		"offset": 0,
		"total_records": 1,
		"next_offset": "",
		"previous_offset": ""
	}
}

/get_domain_activity

Returns domain_activity information.

Request

Parameter

Description

time_start

​​

Status
colourGreen
titleOPTIONAL
Filters by timestamp of associated transaction

time_end

​​

Status
colourGreen
titleOPTIONAL
Filters by timestamp of associated transaction

domain

​​​

Status
colourGreen
titleOPTIONAL
Domain name

type

​​​

Status
colourGreen
titleOPTIONAL
Type

owner_account

​​​

Status
colourGreen
titleOPTIONAL
Domain owner account

limit

​​​

Status
colourGreen
titleOPTIONAL
Number of results to include. Default: 100

offset

​​​

Status
colourGreen
titleOPTIONAL
Offset for pagination. Default: 0

Query

Return records from domain_activity which match all request parameters.

timestamp requires join on transactions

owner_account requires join on domains

Sort by:

  • alphabetical: timestamp ASC

Response

Group

Field

Source Data

domain_activity

domain

domain_activitydomain

domain_activity

transaction_id

transactionsid

domain_activity

timestamp

transactionstimestamp

domain_activity

account

domainsaccount

domain_activity

type

domain_activitytype

pagination

limit

Supplied limit

pagination

offset

Supplied offset

pagination

total_records

Total number of transactions which meet the criteria

pagination

next_offset

Offset to supply for next set of records: supplied offset + limit

pagination

previous_offset

Offset to supply for previous set of records: supplied offset - limit

Example
Code Block
languagejson
{
	"domain_activity": [
		{
			"domain": "bob",
			"transaction_id": "d3dcd291eb7caadab12f2b9bcacdc5df6b8a5c1455072d9454a3b43956677b6e",
			"timestamp": "2020-03-13T19:52:08",
			"account": "1hpxnziaw2ec",
			"type": "register"
		}
	],
	"pagination": {
		"limit": 100,
		"offset": 0,
		"total_records": 1,
		"next_offset": "",
		"previous_offset": ""
	}
}

/get_handle_activity

Returns handle_activity information.

Request

Parameter

Description

time_start

​​

Status
colourGreen
titleOPTIONAL
Filters by timestamp of associated transaction

time_end

​​

Status
colourGreen
titleOPTIONAL
Filters by timestamp of associated transaction

handle

​​​

Status
colourGreen
titleOPTIONAL
Handle name

type

​​​

Status
colourGreen
titleOPTIONAL
Type

owner_account

​​​

Status
colourGreen
titleOPTIONAL
Handle owner account

limit

​​​

Status
colourGreen
titleOPTIONAL
Number of results to include. Default: 100

offset

​​​

Status
colourGreen
titleOPTIONAL
Offset for pagination. Default: 0

Query

Return records from handle_activity which match all request parameters.

timestamp requires join on transactions

owner_account requires join on handles

Sort by:

  • alphabetical: timestamp ASC

Response

Group

Field

Source Data

handle_activity

domain

handle_activityhandle

handle_activity

transaction_id

transactionsid

handle_activity

timestamp

transactionstimestamp

handle_activity

account

handle_activityaccount

handle_activity

type

handle_activitytype

pagination

limit

Supplied limit

pagination

offset

Supplied offset

pagination

total_records

Total number of transactions which meet the criteria

pagination

next_offset

Offset to supply for next set of records: supplied offset + limit

pagination

previous_offset

Offset to supply for previous set of records: supplied offset - limit

Example
Code Block
languagejson
{
	"handle_activity": [
		{
			"handle": "turandb@opera",
			"transaction_id": "d3dcd291eb7caadab12f2b9bcacdc5df6b8a5c1455072d9454a3b43956677b6e",
			"timestamp": "2024-05-03T17:00:02.500",
			"account": "1hpxnziaw2ec",
			"type": "register"
		}
	],
	"pagination": {
		"limit": 100,
		"offset": 0,
		"total_records": 1,
		"next_offset": "",
		"previous_offset": ""
	}
}