Updates an attachment with a specified ID.
Security
SecretApiKey or JWT
- Mock serverhttps://www.rebilly.com/_mock/catalog/all/attachments/{id}
- Sandbox serverhttps://api-sandbox.rebilly.com/organizations/{organizationId}/attachments/{id}
- Live serverhttps://api.rebilly.com/organizations/{organizationId}/attachments/{id}
- SecretApiKey
- JWT
curl -i -X PUT \
'https://www.rebilly.com/_mock/catalog/all/attachments/{id}' \
-H 'Content-Type: application/json' \
-H 'REB-APIKEY: YOUR_API_KEY_HERE' \
-d '{
"fileId": "file_0YV7HZ7KDCC5WBV9Q7WRKG1H6N",
"relatedType": "customer",
"relatedId": "string",
"name": "string",
"description": "string"
}'Attachment updated.
Headers
Total number of rate limit tokens for this request within a rate limit period. For more information, see Rate limits.
Example:3600
ID of the linked file object.
Example:"file_0YV7HZ7KDCC5WBV9Q7WRKG1H6N"
Date and time when the resource is created. This value is set automatically when the resource is created.
Date and time when the resource is updated. This value is set automatically when the resource is updated.
Response
{ "id": "att_0YV7J787J0DW0918MQQMDHWA7M", "fileId": "file_0YV7HZ7KDCC5WBV9Q7WRKG1H6N", "relatedType": "customer", "relatedId": "string", "name": "string", "description": "string", "createdTime": "2019-08-24T14:15:22Z", "updatedTime": "2019-08-24T14:15:22Z", "_links": [ { … } ], "_embedded": { "file": {} } }