Authorizations
Basic authentication header of the form Basic <api_key>, where <api_key> is your api key.
Generates a secure upload URL for attachment files
curl --request POST \
--url https://api.light.inc/v1/attachments/upload-url \
--header 'Authorization: <api-key>' \
--header 'Content-Type: application/json;charset=UTF-8' \
--data '{
"resourceId": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"fileName": "<string>",
"contentType": "<string>"
}'{
"uploadUrl": "<string>",
"key": "<string>",
"metadata": {}
}Basic authentication header of the form Basic <api_key>, where <api_key> is your api key.
curl --request POST \
--url https://api.light.inc/v1/attachments/upload-url \
--header 'Authorization: <api-key>' \
--header 'Content-Type: application/json;charset=UTF-8' \
--data '{
"resourceId": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"fileName": "<string>",
"contentType": "<string>"
}'{
"uploadUrl": "<string>",
"key": "<string>",
"metadata": {}
}