Gotipath Docs
Stream
  • Documention
  • API Reference
CDN
  • Documention
  • API Reference
Stream
  • Documention
  • API Reference
CDN
  • Documention
  • API Reference
  1. Multipart Upload
  • Getting Started
  • Manage Videos
    • Uploader SDKs
    • Create Video
      POST
    • List Videos
      GET
    • Get Video details
      GET
    • Video delete
      DELETE
    • Update
      PUT
    • Pull Video
      POST
  • Manage Collection
    • Create Collection
      POST
    • Collection List
      GET
    • Show
      GET
    • update
      PUT
    • Delete
      DELETE
  • Multipart Upload
    • Create parts of the original video
      POST
    • Get Presign URL
      GET
    • SignPartUpload
      PUT
    • List parts
      GET
    • Complete Multipart Upload
      POST
    • AbortMultipartUpload
      DELETE
  • Manage Tags
    • Create New Tags
      POST
    • Get All Tags
      GET
  • Manage Livestream
    • Create New Livestream
      POST
    • Delete Live stream
      DELETE
    • Livestream make ban
      PATCH
    • Livestream make unban
      PATCH
    • Get all livestream
      GET
    • Players details
      GET
    • Livestream history
      GET
    • Livestream details
      GET
  • Notifications
    • Webhook notification logs
    • Webhook notification Resend
  • Manage Security Settings
    • Add Access control
    • Get Access control
  1. Multipart Upload

List parts

GET
https://apistream.gotipath.com/v1uploads/s3/multipart/{uploadId}
Last modified:2023-11-14 07:29:22
Maintainer:Not configured

Request

Path Params
uploadId
string 
required
The UploadID of this Multipart upload.
Query Params
key
string 
required
The object key of this Multipart upload.
Header Params
X-Auth-ClientId
string 
required
Default:
ebe8bac0-eaef-4548-8b59-96c9ec38a22b
X-Auth-LibraryId
string 
required
Default:
89898172-d32b-49f8-a94a-bdf0c6ca1bd9
X-Auth-ApiKey
string 
required
Default:
pEBPYVUNMbP7uDsb0W2h3oTjpEqr32fFh/3TNUhvFcJt7/J/hyV+5LctVWONgzaw+w+PpQ

Request samples

Shell
JavaScript
Java
Swift
Go
PHP
Python
HTTP
C
C#
Objective-C
Ruby
OCaml
Dart
R
Request Request Example
Shell
JavaScript
Java
Swift
curl --location --request GET 'https://apistream.gotipath.com/v1uploads/s3/multipart/?key=' \
--header 'X-Auth-ClientId;' \
--header 'X-Auth-LibraryId;' \
--header 'X-Auth-ApiKey;'

Responses

🟢200OK
application/json
Body
array of:
PartNumber
integer 
required
The index in the file of the uploaded part.
LastModified
string 
required
ETag
string 
required
The ETag of the part, used to identify it when completing the multipart upload and combining all parts into a single file.
Size
integer 
required
The size of the part in bytes.
Example
[
    {
        "PartNumber": 1,
        "LastModified": "2023-11-14T06:20:00Z",
        "ETag": "\"50476f45952f68d3dafa2acddd022fd2\"",
        "Size": 10485760
    },
    {
        "PartNumber": 2,
        "LastModified": "2023-11-14T06:20:00Z",
        "ETag": "\"edf20c1494f4e73187a58103d1eb34b8\"",
        "Size": 10485760
    },
    {
        "PartNumber": 3,
        "LastModified": "2023-11-14T06:20:00Z",
        "ETag": "\"06be575ba91bf6d2ff9d3291caa4d25b\"",
        "Size": 10485760
    },
    {
        "PartNumber": 4,
        "LastModified": "2023-11-14T06:20:00Z",
        "ETag": "\"567b53456c1864fe07dafd3ba97eace6\"",
        "Size": 10485760
    },
    {
        "PartNumber": 5,
        "LastModified": "2023-11-14T06:20:00Z",
        "ETag": "\"000466a35694acf48233c140935bac9c\"",
        "Size": 10485760
    },
    {
        "PartNumber": 7,
        "LastModified": "2023-11-14T06:20:00Z",
        "ETag": "\"9ee3ecf6f443ff2625d6d2851073c608\"",
        "Size": 10485760
    },
    {
        "PartNumber": 8,
        "LastModified": "2023-11-14T06:20:00Z",
        "ETag": "\"d96f4dd7f1c7ac28e5dc2b4925ba1ee2\"",
        "Size": 10485760
    },
    {
        "PartNumber": 10,
        "LastModified": "2023-11-14T06:20:00Z",
        "ETag": "\"c85ac757c233c9e4099430c807d8d683\"",
        "Size": 10485760
    },
    {
        "PartNumber": 11,
        "LastModified": "2023-11-14T06:20:00Z",
        "ETag": "\"bba793fa924c0fc57b04c3055900f719\"",
        "Size": 10485760
    },
    {
        "PartNumber": 12,
        "LastModified": "2023-11-14T06:20:00Z",
        "ETag": "\"a6b38d1a63e45b6dc1529c85237a4e2e\"",
        "Size": 10485760
    }
]
Previous
SignPartUpload
Next
Complete Multipart Upload
Built with