Write metadata to the database

POST /v1/metadata/write

Body Required

  • keyspace string Required

    Keyspace for the metadata

  • table string Required

    Table to write the metadata to

  • raw_value string

    Raw value of the metadata

  • source_file string

    Source file for the metadata

  • source_type string

    Type of the source

  • processing_details string

    Details of the processing done

Responses

  • 200

    Metadata Written

    Hide response attributes Show response attributes object
    • keyspace string Required

      Keyspace for the metadata

    • table string Required

      Table to write the metadata to

    • raw_value string

      Raw value of the metadata

    • source_file string

      Source file for the metadata

    • source_type string

      Type of the source

    • processing_details string

      Details of the processing done

POST /v1/metadata/write
curl \
 -X POST https://api.infura.ai/v1/metadata/write \
 -H "x-api-key: $API_KEY" \
 -d '{"keyspace":"string","table":"string","raw_value":"string","source_file":"string","source_type":"string","processing_details":"string"}'
Request example
{
  "keyspace": "string",
  "table": "string",
  "raw_value": "string",
  "source_file": "string",
  "source_type": "string",
  "processing_details": "string"
}
Response examples (200)
{
  "keyspace": "string",
  "table": "string",
  "raw_value": "string",
  "source_file": "string",
  "source_type": "string",
  "processing_details": "string"
}