Properties
| Name | Type | Description |
|---|---|---|
| capability | string | The capability for which you are creating the business line. For example, **receivePayments**. |
| industryCode | string | A code that represents the industry of your legal entity. For example, **4431A** for computer software stores. |
| legalEntityId | string | Unique identifier of the [legal entity](https://docs.adyen.com/api-explorer/#/legalentity/latest/post/legalEntities__resParam_id) that owns the business line. |
| salesChannels | array | A list of channels where goods or services are sold. Possible values: **pos**, **posMoto**, **eCommerce**, **ecomMoto**, **payByLink**. Required only in combination with the `service` **paymentProcess |
| service | string | The service for which you are creating the business line. Possible values: * **paymentProcessing** * **banking** |
| sourceOfFunds | object | Contains information about the source of your user's funds. Required only for the `service` **banking**. |
| webData | array | List of website URLs where your user's goods or services are sold. When this is required for a service but your user does not have an online presence, provide the reason in the `webDataExemption` obje |
| webDataExemption | object | The reason why the web data is not provided. |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/BusinessLineInfoUpdate",
"title": "BusinessLineInfoUpdate",
"properties": {
"capability": {
"deprecated": true,
"x-deprecatedInVersion": "3",
"x-deprecatedMessage": "Use `service` instead.",
"description": "The capability for which you are creating the business line. For example, **receivePayments**.",
"enum": [
"receivePayments",
"receiveFromPlatformPayments",
"issueBankAccount"
],
"type": "string"
},
"industryCode": {
"description": "A code that represents the industry of your legal entity. For example, **4431A** for computer software stores.",
"type": "string"
},
"legalEntityId": {
"description": "Unique identifier of the [legal entity](https://docs.adyen.com/api-explorer/#/legalentity/latest/post/legalEntities__resParam_id) that owns the business line.",
"type": "string"
},
"salesChannels": {
"description": "A list of channels where goods or services are sold.\n\nPossible values: **pos**, **posMoto**, **eCommerce**, **ecomMoto**, **payByLink**.\n\nRequired only in combination with the `service` **paymentProcessing**.",
"items": {
"type": "string"
},
"type": "array"
},
"service": {
"x-addedInVersion": "3",
"description": "The service for which you are creating the business line.\n\n\n\nPossible values:\n* **paymentProcessing**\n* **banking**\n\n",
"enum": [
"paymentProcessing",
"banking"
],
"type": "string"
},
"sourceOfFunds": {
"description": "Contains information about the source of your user's funds. Required only for the `service` **banking**.",
"$ref": "#/components/schemas/SourceOfFunds"
},
"webData": {
"description": "List of website URLs where your user's goods or services are sold. When this is required for a service but your user does not have an online presence, provide the reason in the `webDataExemption` object.",
"items": {
"$ref": "#/components/schemas/WebData"
},
"type": "array"
},
"webDataExemption": {
"description": "The reason why the web data is not provided.",
"$ref": "#/components/schemas/WebDataExemption"
}
},
"type": "object"
}