Skip to main content
GET
/
evault
/
v1
/
bins
/
{id}
Retrieve Bin
curl --request GET \
  --url https://api.example.com/evault/v1/bins/{id}/ \
  --header 'api-key: <api-key>'
{
  "id": "<string>",
  "name": "<string>",
  "description": "<string>",
  "file_type": "<string>",
  "file_size": 123,
  "file_size_unit": "<string>",
  "extension": "<string>",
  "days_till_expiry": "<string>",
  "tags": [
    {
      "id": "<string>",
      "name": "<string>",
      "created_at": "2023-11-07T05:31:56Z",
      "updated_at": "2023-11-07T05:31:56Z",
      "description": "<string>"
    }
  ],
  "created_at": "2023-11-07T05:31:56Z",
  "updated_at": "2023-11-07T05:31:56Z"
}

Authorizations

api-key
string
header
required

Path Parameters

id
string
required

A unique value identifying this bin.

Response

200 - application/json
id
string
required
name
string
required
description
string
required
file_type
string
required
file_size
integer
required
file_size_unit
string
required
extension
string
required
days_till_expiry
string
required
tags
object[]
required
created_at
string<date-time>
required
updated_at
string<date-time>
required