Skip to main content
GET
/
v1
/
public
/
transfers
/
{history_id}
Get Transfer History Public
curl --request GET \
  --url https://api.sanka.com/v1/public/transfers/{history_id} \
  --header 'Authorization: Bearer <token>'
{
  "id": "<string>",
  "type": "<string>",
  "name": "<string>",
  "status": "<string>",
  "progress": 0,
  "total_number": 0,
  "success_number": 0,
  "failed_number": 0,
  "error_message": "<string>",
  "error_file_url": "<string>",
  "data_file_url": "<string>",
  "checkpoint_details": {},
  "channel_id": "<string>",
  "channel_name": "<string>",
  "created_at": "2023-11-07T05:31:56Z",
  "updated_at": "2023-11-07T05:31:56Z"
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Path Parameters

history_id
string
required

Response

200 - application/json

OK

id
string
required
type
string | null
name
string | null
status
string | null
progress
integer
default:0
total_number
integer
default:0
success_number
integer
default:0
failed_number
integer
default:0
error_message
string | null
error_file_url
string | null
data_file_url
string | null
checkpoint_details
Checkpoint Details · object
channel_id
string | null
channel_name
string | null
created_at
string<date-time> | null
updated_at
string<date-time> | null