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.eyJzdWIiOiIxODYyIiwic2NwIjoidXNlciIsImF1ZCI6bnVsbCwiaWF0IjoxNzYwOTUwNDc5LCJleHAiOjE3NjM1NDI0NzksImp0aSI6IjQ0YzhmOWJmLWJjYTYtNGYzMS1iYWU0LTI0OTY0NDkyOWUxZCJ9.LM10H5UiBlcWPF2cdHXiDNBtEbrnubtNZbTj01Cv6Iw
Host: example.org
Cookie:
Body
{
"document": {
"name": "quo"
}
}
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/"b7847e4291ed1448c8bdc464a01ec7a2"
cache-control: max-age=0, private, must-revalidate
x-request-id: d9a92e6e-6d1d-40c0-a6dc-997f89cce597
x-runtime: 0.015487
content-length: 380
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": "quo"
}
}