You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
/// Create a bank account for a given company's connection.
26
+
/// Create a bank account for a given company's connection.
27
27
/// </summary>
28
28
publicinterfaceIBankAccounts
29
29
{
30
-
31
30
/// <summary>
32
-
/// Create bank account
33
-
///
31
+
/// Create bank account.
32
+
/// </summary>
34
33
/// <remarks>
35
-
/// The *Create bank account* endpoint creates a new <a href="https://docs.codat.io/sync-for-payables-api#/schemas/BankAccount">bank account</a> for a given company's connection.<br/>
34
+
/// The *Create bank account* endpoint creates a new <a href="https://docs.codat.io/sync-for-payables-api#/schemas/BankAccount">bank account</a> for a given company's connection.<br/>
36
35
/// <br/>
37
36
/// <a href="https://docs.codat.io/sync-for-payables-api#/schemas/BankAccount">Bank accounts</a> are financial accounts maintained by a bank or other financial institution.
/// <param name="retryConfig">The retry configuration to use for this operation.</param>
40
+
/// <returns>An awaitable task that returns a <see cref="CreateBankAccountResponse"/> response envelope when completed.</returns>
41
+
/// <exception cref="ArgumentNullException">The required parameter <paramref name="request"/> is null.</exception>
42
+
/// <exception cref="HttpRequestException">The HTTP request failed due to network issues.</exception>
43
+
/// <exception cref="ResponseValidationException">The response body could not be deserialized.</exception>
44
+
/// <exception cref="ErrorMessage">The request made is not valid. Thrown when the API returns a 400, 401, 402, 403, 404, 429, 500 or 503 response.</exception>
45
+
/// <exception cref="SDKException">Default API Exception. Thrown when the API returns a 4XX or 5XX response.</exception>
46
+
publicTask<CreateBankAccountResponse>CreateAsync(
47
+
CreateBankAccountRequestrequest,
48
+
RetryConfig?retryConfig=null
49
+
);
41
50
}
42
51
43
52
/// <summary>
44
-
/// Create a bank account for a given company's connection.
53
+
/// Create a bank account for a given company's connection.
/// The *Create bank account* endpoint creates a new <a href="https://docs.codat.io/sync-for-payables-api#/schemas/BankAccount">bank account</a> for a given company's connection.<br/>
73
+
/// <br/>
74
+
/// <a href="https://docs.codat.io/sync-for-payables-api#/schemas/BankAccount">Bank accounts</a> are financial accounts maintained by a bank or other financial institution.
/// <param name="retryConfig">The retry configuration to use for this operation.</param>
78
+
/// <returns>An awaitable task that returns a <see cref="CreateBankAccountResponse"/> response envelope when completed.</returns>
79
+
/// <exception cref="ArgumentNullException">The required parameter <paramref name="request"/> is null.</exception>
80
+
/// <exception cref="HttpRequestException">The HTTP request failed due to network issues.</exception>
81
+
/// <exception cref="ResponseValidationException">The response body could not be deserialized.</exception>
82
+
/// <exception cref="ErrorMessage">The request made is not valid. Thrown when the API returns a 400, 401, 402, 403, 404, 429, 500 or 503 response.</exception>
83
+
/// <exception cref="SDKException">Default API Exception. Thrown when the API returns a 4XX or 5XX response.</exception>
0 commit comments