Skip to main content
Version: Next

Start a transfer process

POST 

/api/management/transfers/:processId/start

Start a transfer process

Request

Path Parameters

    processId stringrequired

    Process ID

Body

    endpointstringrequired
    Example: http://data-plane-endpoint
    properties object[]required
  • Array [
  • namestringrequired
    Example: propertyName
    valuestringrequired
    Example: propertyValue
  • ]

Responses

Transfer started successfully

Schema
    statusstring

Authorization: oauth2

name: oauth2type: oauth2scopes: controlplane_admin,controlplane_dataplaneflows: {
  "password": {
    "scopes": {
      "controlplane_admin": "controlplane_admin",
      "controlplane_dataplane": "controlplane_dataplane"
    }
  }
}
curl -L 'https://tsg.dataspac.es/api/management/transfers/:processId/start' \
-H 'Content-Type: application/json' \
-H 'Accept: application/json' \
-H 'Authorization: Bearer <token>' \
-d '{
"endpoint": "http://data-plane-endpoint",
"properties": [
{
"name": "propertyName",
"value": "propertyValue"
}
]
}'
Request Collapse all
Auth
Parameters
— pathrequired
Body
{
  "endpoint": "http://data-plane-endpoint",
  "properties": [
    {
      "name": "propertyName",
      "value": "propertyValue"
    }
  ]
}