Crego APIs
APIs DocHome Page
Web Apps
  • Jupiter
  • Venus
APIs DocHome Page
Web Apps
  • Jupiter
  • Venus
  1. Sharing
  • Omni
  • Document APIs
  • Storage
    • Create Storage
      POST
    • Update Storage
      PATCH
    • List Storage
      GET
    • Get Storage
      GET
    • Test Credential
      GET
  • Category
    • Create Category
      POST
    • Update Category
      PATCH
    • List Category
      GET
    • Get Category
      GET
  • Document
    • Create Document
      POST
    • Update Document
      PATCH
    • List Document
      GET
    • Delete Document
      DELETE
    • Get Document
      GET
    • Upload Files
      POST
    • Downlaod Files
      GET
    • Delete File
      DELETE
    • Get all tags
      GET
    • Inactive
      PUT
    • Reject
      PUT
    • Approve
      PUT
  • Sharing
    • Share Document
      POST
    • Preview Shared Document
      GET
    • List Shared Documents
      GET
    • Get Shared Document
      GET
    • Update Shared Document
      PATCH
    • Delete Document Share
      DELETE
  1. Sharing

Get Shared Document

Developing
preprod
https://preprod.api.crego.io
preprod
https://preprod.api.crego.io
GET
/documents/{document_id}/shares/{share_id}/
Last modified:2025-03-26 07:30:08

Request

Authorization
Provide your bearer token in the
Authorization
header when making requests to protected resources.
Example:
Authorization: Bearer ********************
Path Params
document_id
string 
required
Example:
{{document_id}}
share_id
string 
required
Example:
{{share_id}}

Request samples

Shell
JavaScript
Java
Swift
Go
PHP
Python
HTTP
C
C#
Objective-C
Ruby
OCaml
Dart
R
Request Request Example
Shell
JavaScript
Java
Swift
curl --location -g --request GET 'https://preprod.api.crego.io/documents/{{document_id}}/shares/{{share_id}}/'

Responses

🟢200Success
application/json
Body
id
string 
required
tenant_id
string 
required
created_by
string 
required
updated_by
string 
required
created_at
string 
required
updated_at
string 
required
expires_at
string 
required
token
string 
required
document
string 
required
Example
{
    "id": "01JQ8NZY29A8XYWQ1ZAQR4KRJD",
    "tenant_id": "23067dbc-6c62-4203-9014-7100e4ffe811",
    "created_by": "6da08401-b1f7-46ec-9013-2a9d7bc6185c",
    "updated_by": "",
    "created_at": "2025-03-26T13:04:42.515885Z",
    "updated_at": "2025-03-26T13:04:42.515912Z",
    "expires_at": "2025-04-01T11:08:35.000000Z",
    "token": "eyJkb2NfaWQiOiIwMUpROE1aMFA5NEhSNkhTSDFER1k1Vk5IOSIsImV4cCI6MTc0MzQ4NTkxNX0:1txLHe:HgE71qPbk4BdkernCAL_S0tDCV7gjuT2QdibFZ29NZA",
    "document": "01JQ8MZ0P94HR6HSH1DGY5VNH9"
}
Previous
List Shared Documents
Next
Update Shared Document
Built with