Create Data SourceDeprecated

Create a new data source for the bank data.

SecurityapiKey
Request
Request Body schema: application/json
dataTransformationId
string (DataTransformationId)

The ID of an existing data transformation, which will be used to transform raw records into bank accounts.

Example: "72d6900fce6b326088f5d9d91049e3e6"
name
string (BusinessPartnerStorageDataSourceName)

Name of a data source of a storage.

Example: "Internal customers"
type
string (AccessType)

Type of access to the data source.

Enum: Description
PRIVATE

Private access.

ORGANIZATION

Organization access.

Example: "PRIVATE"
Responses
200

OK

post/banks/datasources
Request samples
application/json
{
  • "name": "Internal customers",
  • "type": "PRIVATE",
  • "dataTransformationId": "72d6900fce6b326088f5d9d91049e3e6"
}
Response samples
application/json
{
  • "name": "Internal customers",
  • "type": "PRIVATE",
  • "dataTransformationId": "72d6900fce6b326088f5d9d91049e3e6",
  • "id": "648824a691d8d2503d65103e",
  • "creationUser": "johndoe",
  • "createdAt": "2025-02-21T08:27:08Z",
  • "modifiedAt": "2025-02-21T08:27:08Z"
}