v1

latestOpenAPI 3.0.02026-07-1734830.3 KB

Metadata API endpoint

Endpoint for all metadata operations

post/v1/metadata

Request body

OR
OR
OR
OR
OR
OR
OR
OR
OR
OR
OR
OR
OR
OR
OR

Example request

{
  "args": {
    "table": {
      "schema": "public",
      "name": "employees"
    },
    "role": "user",
    "permission": {
      "check": {
        "user_id": {
          "_eq": "X-Hasura-User-Id"
        }
      },
      "set": {
        "user_id": "X-Hasura-User-Id"
      },
      "columns": [
        "name",
        "email",
        "user_id"
      ]
    },
    "comment": "Allow users to insert their own data",
    "source": "default"
  }
}

Response

Operation executed successfully

messagestring

Example response

{
  "message": "success"
}