curl --request POST \
--url http://localhost:3091/v1/api/agencies/{id}/kyc/documents \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: multipart/form-data' \
--form file='@example-file'{
"id": 123,
"agencyId": 123,
"name": "<string>",
"fileUrl": "<string>",
"uploadedAt": "2023-11-07T05:31:56Z",
"status": "<string>",
"reviewedAt": "2023-11-07T05:31:56Z",
"reviewedById": 123,
"rejectionReason": "<string>"
}Uploads a KYC verification document for the agency
curl --request POST \
--url http://localhost:3091/v1/api/agencies/{id}/kyc/documents \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: multipart/form-data' \
--form file='@example-file'{
"id": 123,
"agencyId": 123,
"name": "<string>",
"fileUrl": "<string>",
"uploadedAt": "2023-11-07T05:31:56Z",
"status": "<string>",
"reviewedAt": "2023-11-07T05:31:56Z",
"reviewedById": 123,
"rejectionReason": "<string>"
}JWT access token from POST /v1/api/auth/login