DocsAPI ReferenceAbout
DocsAPI ReferenceAbout
  1. Uploads
  • Overview
  • Getting Started
  • Authentication
  • Permissions
  • Using the Marvia CDN
  • API Reference
    • Users
      • Get a user
      • Delete a user
      • List
      • Create a new user
    • Products
      • List products
    • Locations
      • Update a location
      • Get a location
      • Delete a location
      • List locations
      • Create a new location
    • Groups
      • Get a group
      • Update a group
      • Delete a group
      • List groups
      • Create a new group
    • Uploads
      • Initialize multipart upload
        POST
      • Complete multipart upload
        PUT
    • Assets
      • List assets
      • Create a new asset
      • Get asset by UUID
      • Update an asset
      • Search assets
  1. Uploads

Complete multipart upload

Production
https://api-v2.getmarvia.com
Production
https://api-v2.getmarvia.com
PUT
https://api-v2.getmarvia.com
/v1/uploads/complete-multi-part
Required Permission: create:uploads
This endpoint requires an API key with the create:uploads permission. Make sure your token was created with this permission during token creation.

Request

Authorization
API Key
Add parameter in header
Authorization
Example:
Authorization: ********************
or
Header Params

Body Params application/json

Examples

Responses

🟢200OK
application/json
Success
Body

🟠400Bad Request
🟠401Unauthorized
🔴500Server Error
Request Request Example
Shell
JavaScript
Java
Swift
curl --location --request PUT 'https://api-v2.getmarvia.com/v1/uploads/complete-multi-part' \
--header 'Authorization: <api-key>' \
--header 'Content-Type: application/json' \
--data-raw '{
    "uuid": "095be615-a8ad-4c33-8e9c-c7612fbf6c9f",
    "parts": [
        {
            "partNumber": 0,
            "eTag": "string"
        }
    ]
}'
Response Response Example
200 - Example 1
{
    "_tag": "Success",
    "data": {
        "sysFileUuid": "e49d62e7-0d21-449b-bb5e-e29667cee36f",
        "url": "string"
    }
}
Modified at 2025-09-08 06:20:01
Previous
Initialize multipart upload
Next
List assets
Built with