Update a profile document
Documents
PUT update document
Endpoint
PUT /api/v1/users/profile/documents/:id
Parameters
Name | Description |
---|---|
document[name] required | Document name |
document[file] | Document file |
Request
Route
PUT /api/v1/users/profile/documents/3
Headers
Accept: application/json
Content-Type: application/json
Authorization: Bearer eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiIxODc2Iiwic2NwIjoidXNlciIsImF1ZCI6bnVsbCwiaWF0IjoxNzQ4NTE2NTQwLCJleHAiOjE3NTExMDg1NDAsImp0aSI6ImQzYjY0NzExLWM2YWYtNDQ1Yy1hYTRjLWUwYTNmYzMyNTA3OSJ9.Bh40k7fmr2enCrMt5BvS9NO-UPSN2BONE-mOpsTNXdw
Host: example.org
Cookie:
Body
{
"document": {
"name": "et"
}
}
Response
Simulated Response
Status
200
Headers
x-frame-options: SAMEORIGIN
x-xss-protection: 0
x-content-type-options: nosniff
x-permitted-cross-domain-policies: none
referrer-policy: strict-origin-when-cross-origin
content-type: application/json; charset=utf-8
vary: Accept, Origin
etag: W/"b9d3c30b5063a43015355aa9e28f9e75"
cache-control: max-age=0, private, must-revalidate
x-request-id: 545b17ca-0e43-4705-967d-6f1632b665f6
x-runtime: 0.015089
content-length: 379
Body
{
"document": {
"id": 3,
"file": {
"id": 29,
"signed_id": "eyJfcmFpbHMiOnsiZGF0YSI6MzMsInB1ciI6ImJsb2JfaWQifX0=--f154bccd5a284814aae03c22ed695c69602b6ab6",
"byte_size": 596,
"filename": "test_image.png",
"url": "http://localhost:3000/rails/active_storage/blobs/redirect/eyJfcmFpbHMiOnsiZGF0YSI6MzMsInB1ciI6ImJsb2JfaWQifX0=--f154bccd5a284814aae03c22ed695c69602b6ab6/test_image.png"
},
"name": "et"
}
}