Clarify API
API ReferenceRecords Attachments

Get Signed Url For Record Attachment Upload

PUT
/workspaces/{workspace}/objects/{object}/records/{id}/attachments
Authorization<token>

API key authentication. Send your key in the Authorization header as: api-key <your-api-key>.

In: header

Path Parameters

workspace*string
object*string
id*string

Request Body

application/json

TypeScript Definitions

Use the request body type in TypeScript.

Response Body

application/json

curl -X PUT "https://example.com/workspaces/string/objects/string/records/string/attachments" \  -H "Content-Type: application/json" \  -d '{    "name": "string"  }'
{
  "data": {
    "signedUrl": "string",
    "key": "string",
    "attachmentId": "string",
    "entity": "string",
    "_id": "string"
  }
}