Get all transfers
GET/api/management/transfers
Get all transfers
Request
Responses
- 200
- 403
- application/json
- Schema
- Example (auto)
Schema
- Array [
- ]
idstringrequired
Example:
123e4567-e89b-12d3-a456-426614174000
rolestringrequired
Possible values: [provider
, consumer
]
Example:
provider
processIdstringrequired
Example:
process-001
remotePartystringrequired
Example:
remote-system
secretstring
Example:
secret-key
statestringrequired
Possible values: [dspace:REQUESTED
, dspace:STARTED
, dspace:TERMINATED
, dspace:COMPLETED
, dspace:SUSPENDED
]
Example:
REQUESTED
request object
response object
dataAddress object
createdDatedate-timerequired
Example:
2023-01-01T00:00:00.000Z
modifiedDatedate-timerequired
Example:
2023-01-02T00:00:00.000Z
deletedDatedate-timerequired
Example:
2023-01-03T00:00:00.000Z
[
{
"id": "123e4567-e89b-12d3-a456-426614174000",
"role": "provider",
"processId": "process-001",
"remoteParty": "remote-system",
"secret": "secret-key",
"state": "REQUESTED",
"request": {},
"response": {},
"dataAddress": {},
"createdDate": "2023-01-01T00:00:00.000Z",
"modifiedDate": "2023-01-02T00:00:00.000Z",
"deletedDate": "2023-01-03T00:00:00.000Z"
}
]
Forbidden
- application/json
- Schema
- Example (auto)
Schema
namestringrequired
Example:
ResourceNotFound
statusstringrequired
Example:
404 Not Found
codenumberrequired
Example:
404
messageobject
Example:
The requested resource does not exist.
errorstring
Example:
Not Found
{
"name": "ResourceNotFound",
"status": "404 Not Found",
"code": 404,
"message": "The requested resource does not exist.",
"error": "Not Found"
}
Authorization: oauth2
name: oauth2type: oauth2scopes:controlplane_dataplane
flows: { "password": { "scopes": { "analyticsdataplane_admin": "analyticsdataplane_admin", "analyticsdataplane_dataplane": "analyticsdataplane_dataplane" } } }
- curl
- http
- CURL
curl -L 'https://tsg.dataspac.es/api/management/transfers' \
-H 'Accept: application/json' \
-H 'Authorization: Bearer <token>'