Skip to main content
POST
/
v1
/
teams
/
{team_id}
/
locations
/
{location_id}
/
verify
Verify Location
curl --request POST \
  --url https://api.dataraven.io/v1/teams/{team_id}/locations/{location_id}/verify \
  --header 'Authorization: Bearer <token>'
{
  "id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
  "location_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
  "verified": true,
  "created_at": "2023-11-07T05:31:56Z",
  "bucket_exists": true,
  "can_list": true,
  "can_read": true,
  "can_write": true,
  "can_delete": true,
  "region": "<string>",
  "error_code": "<string>",
  "error_message": "<string>",
  "vault_field_name": "<string>",
  "vault_reference": "<string>",
  "vault_type": "<string>"
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Path Parameters

location_id
string<uuid>
required
team_id
string<uuid>
required

Response

Successful Response

A single verification record.

Used as the response body for both POST /verify (the record that was just created) and GET /verifications (paginated history). Clients get one consistent shape for "what happened during a verification."

id
string<uuid>
required
location_id
string<uuid>
required
verified
boolean
required
created_at
string<date-time>
required
bucket_exists
boolean | null
can_list
boolean | null
can_read
boolean | null
can_write
boolean | null
can_delete
boolean | null
region
string | null
error_code
string | null
error_message
string | null
vault_field_name
string | null
vault_reference
string | null
vault_type
string | null