Upload File
Upload a File. Use the returned Id when submitting a claim to attach it to that claim.
Upload File
POST https://staging.api.xclaim.xcover.com/partners/{partnerCode}/files
Upload a File. Use the returned Id when submitting a claim to attach it to that claim.
Path Parameters
Name
Type
Description
partnerCode*
String
eg. XYZ999
Headers
Name
Type
Description
Authorization*
String
Bearer {{JWT token}}
{
"file": null
}{
"type": "exception",
"message": "422 Unprocessable Content",
"errors": {
"file": [
"The file field is required."
]
}
}{
"file": "dummy.pdf <file-resource>"
}{
"data": {
"id": "37aa1591-fb82-441e-8fd8-f8d34f2f682d",
"claimId": null,
"location": "claim_files/91ad816a-535f-11ee-8e0c-0bc1ac93123a.pdf",
"meta": {
"dirname": ".",
"basename": "dummy.pdf",
"extension": "pdf",
"filename": "dummy"
},
"createdAt": "2023-09-15T00:34:02+00:00",
"updatedAt": "2023-09-15T00:34:02+00:00"
}
}Last updated