Transfer Content Details
GET/transfer-consents
Get awaiting transfer consent with a temporaryId which is only valid for a specific time.
Request
Query Parameters
temporaryId uuidrequired
This ID is only valid for a limited time and can only be used once.
Example: 844830a8-b845-4cbc-b79f-865cd8c8aa8e
Responses
- 200
- 400
- 404
Request was successful
- application/json
- Schema
- Example (from schema)
Schema
transferConsent
object
id uuidrequired
maxFrequency stringrequired
Possible values: [once day week month year
]
maxAmountCents numberrequired
savehackLaunchId uuidrequired
obsoleteSavehackLaunchId uuid
user
object
type stringrequired
id stringrequired
externalId string
{
"transferConsent": {
"id": "844830a8-b845-4cbc-b79f-865cd8c8aa8e",
"maxFrequency": "once",
"maxAmountCents": 1012,
"savehackLaunchId": "916430a8-b845-4cbc-b79f-865cd8c83mw1",
"obsoleteSavehackLaunchId": "31566c16-c5c4-4ea2-9ec9-4708a2edec2e",
"user": {
"type": "user",
"id": "31566c16-c5c4-4ea2-9ec9-4708a2edec2e",
"externalId": "10002345"
}
}
}
Bad request
- application/json
- Schema
- Example (from schema)
- Example
Schema
Array [
]
errors
object[]
required
field stringrequired
errors string[]required
{
"errors": [
{
"field": "string",
"errors": [
"string"
]
}
]
}
{
"errors": [
{
"field": "TransferConsent.temporaryId",
"errors": [
"can't be blank"
]
}
]
}
Transfer consent not found
Loading...