Get the document detail from a company

Get Document Detail

The "Get Document Detail" API endpoint retrieves the details of a specific document associated with an account of a company.

Request

  • Method: GET
  • URL: https://app.investglass.com/api/v1/documents/:id
  • Query Parameters:
    • content (boolean): Specifies whether to include the content of the document in the response.

Response

The response for this request can be documented as a JSON schema:

{
  "type": "array",
  "items": {
    "type": "object",
    "properties": {
      "id": {"type": "string"},
      "user_id": {"type": "string"},
      "company_id": {"type": "string"},
      "client_id": {"type": "string"},
      "description": {"type": "string"},
      "original_filename": {"type": "string"},
      "content_type": {"type": "string"},
      "size": {"type": "string"},
      "approver_id": {"type": "string"},
      "approved_at": {"type": "string"},
      "is_read": {"type": "string"},
      "document_type": {"type": "string"},
      "updater_id": {"type": "string"},
      "directory_path": {"type": "string"},
      "expiration_date": {"type": "string"},
      "creator_id": {"type": "string"},
      "last_modifier_id": {"type": "string"},
      "tag": {"type": "string"}
    }
  }
}

Language
Credentials
Bearer
URL
Click Try It! to start a request and see the response here!