Interface ICostSequencesApi
Represents a collection of functions to interact with the API endpoints
Inherited Members
Namespace: Simplic.Datev.Swagger.Api
Assembly: Simplic.Datev.IO.Swagger.dll
Syntax
public interface ICostSequencesApi : IApiAccessor
Methods
| Improve this Doc View SourceClientsClientIdFiscalYearsFiscalYearIdCostSystemsCostSystemIdCostSequencesCostSequenceIdCostAccountingRecordsGet(String, String, String, String, String, Nullable<Int32>)
Retrieve a list of cost accounting records from a specific cost sequence
Declaration
List<CostAccountingRecord> ClientsClientIdFiscalYearsFiscalYearIdCostSystemsCostSystemIdCostSequencesCostSequenceIdCostAccountingRecordsGet(string clientId, string fiscalYearId, string costSystemId, string costSequenceId, string skip = null, int? top = null)
Parameters
| Type | Name | Description |
|---|---|---|
| System.String | clientId | ID of central client/company |
| System.String | fiscalYearId | ID of the fiscal year |
| System.String | costSystemId | Cost system number |
| System.String | costSequenceId | Cost sequence number |
| System.String | skip | States how many elements in the total number of items should be skipped. Example: skip=10 (optional) |
| System.Nullable<System.Int32> | top | States the maximum number of elements that should be contained within the total. Example: top=10 (optional) |
Returns
| Type | Description |
|---|---|
| System.Collections.Generic.List<CostAccountingRecord> | List<CostAccountingRecord> |
Remarks
Retrieve a list of cost accounting records from a specific cost sequence. The list contains all cost relevant accounting records. Cost accounting records are independent from financial accounting and are processed within cost. They are recorded monthly. A maximum of 99999999 cost accounting records can be created per cost sequence.<br><br> Paging When accessing large quantities of data, it may happen that these cannot be delivered in a single request. In this case, paging has to be used in order to reduce the amount of data in a single request. Please use top and skip for this purpose. The cost accounting records will be sorted by accounting record ID. |Parameter|Description | |:- -- -- -:|- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- --| | skip | Number of cost accounting records that should be skipped. Example: skip=40 | | top | Number of cost accounting records that should be read as a result of the request.Example: top=20 | Use multiple data paths It is necessary to know the correct data path to address the correct data stock. If the correct data path cannot be determined in DATEVconnect, the desired data path can be defined by a configuration file to resolve this data path collision. Further information is provided in Info Database, document 1071637. URI examples Retrieving of the first 10 cost accounting records:<br> .../cost-accounting-records?top=10 Retrieving of the next 10 cost accounting records:<br> .../cost-accounting-records?top=10&skip=10
Exceptions
| Type | Condition |
|---|---|
| ApiException | Thrown when fails to make API call |
ClientsClientIdFiscalYearsFiscalYearIdCostSystemsCostSystemIdCostSequencesCostSequenceIdCostAccountingRecordsGetAsync(String, String, String, String, String, Nullable<Int32>)
Retrieve a list of cost accounting records from a specific cost sequence
Declaration
Task<List<CostAccountingRecord>> ClientsClientIdFiscalYearsFiscalYearIdCostSystemsCostSystemIdCostSequencesCostSequenceIdCostAccountingRecordsGetAsync(string clientId, string fiscalYearId, string costSystemId, string costSequenceId, string skip = null, int? top = null)
Parameters
| Type | Name | Description |
|---|---|---|
| System.String | clientId | ID of central client/company |
| System.String | fiscalYearId | ID of the fiscal year |
| System.String | costSystemId | Cost system number |
| System.String | costSequenceId | Cost sequence number |
| System.String | skip | States how many elements in the total number of items should be skipped. Example: skip=10 (optional) |
| System.Nullable<System.Int32> | top | States the maximum number of elements that should be contained within the total. Example: top=10 (optional) |
Returns
| Type | Description |
|---|---|
| System.Threading.Tasks.Task<System.Collections.Generic.List<CostAccountingRecord>> | Task of List<CostAccountingRecord> |
Remarks
Retrieve a list of cost accounting records from a specific cost sequence. The list contains all cost relevant accounting records. Cost accounting records are independent from financial accounting and are processed within cost. They are recorded monthly. A maximum of 99999999 cost accounting records can be created per cost sequence.<br><br> Paging When accessing large quantities of data, it may happen that these cannot be delivered in a single request. In this case, paging has to be used in order to reduce the amount of data in a single request. Please use top and skip for this purpose. The cost accounting records will be sorted by accounting record ID. |Parameter|Description | |:- -- -- -:|- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- --| | skip | Number of cost accounting records that should be skipped. Example: skip=40 | | top | Number of cost accounting records that should be read as a result of the request.Example: top=20 | Use multiple data paths It is necessary to know the correct data path to address the correct data stock. If the correct data path cannot be determined in DATEVconnect, the desired data path can be defined by a configuration file to resolve this data path collision. Further information is provided in Info Database, document 1071637. URI examples Retrieving of the first 10 cost accounting records:<br> .../cost-accounting-records?top=10 Retrieving of the next 10 cost accounting records:<br> .../cost-accounting-records?top=10&skip=10
Exceptions
| Type | Condition |
|---|---|
| ApiException | Thrown when fails to make API call |
ClientsClientIdFiscalYearsFiscalYearIdCostSystemsCostSystemIdCostSequencesCostSequenceIdCostAccountingRecordsGetAsyncWithHttpInfo(String, String, String, String, String, Nullable<Int32>)
Retrieve a list of cost accounting records from a specific cost sequence
Declaration
Task<ApiResponse<List<CostAccountingRecord>>> ClientsClientIdFiscalYearsFiscalYearIdCostSystemsCostSystemIdCostSequencesCostSequenceIdCostAccountingRecordsGetAsyncWithHttpInfo(string clientId, string fiscalYearId, string costSystemId, string costSequenceId, string skip = null, int? top = null)
Parameters
| Type | Name | Description |
|---|---|---|
| System.String | clientId | ID of central client/company |
| System.String | fiscalYearId | ID of the fiscal year |
| System.String | costSystemId | Cost system number |
| System.String | costSequenceId | Cost sequence number |
| System.String | skip | States how many elements in the total number of items should be skipped. Example: skip=10 (optional) |
| System.Nullable<System.Int32> | top | States the maximum number of elements that should be contained within the total. Example: top=10 (optional) |
Returns
| Type | Description |
|---|---|
| System.Threading.Tasks.Task<ApiResponse<System.Collections.Generic.List<CostAccountingRecord>>> | Task of ApiResponse (List<CostAccountingRecord>) |
Remarks
Retrieve a list of cost accounting records from a specific cost sequence. The list contains all cost relevant accounting records. Cost accounting records are independent from financial accounting and are processed within cost. They are recorded monthly. A maximum of 99999999 cost accounting records can be created per cost sequence.<br><br> Paging When accessing large quantities of data, it may happen that these cannot be delivered in a single request. In this case, paging has to be used in order to reduce the amount of data in a single request. Please use top and skip for this purpose. The cost accounting records will be sorted by accounting record ID. |Parameter|Description | |:- -- -- -:|- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- --| | skip | Number of cost accounting records that should be skipped. Example: skip=40 | | top | Number of cost accounting records that should be read as a result of the request.Example: top=20 | Use multiple data paths It is necessary to know the correct data path to address the correct data stock. If the correct data path cannot be determined in DATEVconnect, the desired data path can be defined by a configuration file to resolve this data path collision. Further information is provided in Info Database, document 1071637. URI examples Retrieving of the first 10 cost accounting records:<br> .../cost-accounting-records?top=10 Retrieving of the next 10 cost accounting records:<br> .../cost-accounting-records?top=10&skip=10
Exceptions
| Type | Condition |
|---|---|
| ApiException | Thrown when fails to make API call |
ClientsClientIdFiscalYearsFiscalYearIdCostSystemsCostSystemIdCostSequencesCostSequenceIdCostAccountingRecordsGetWithHttpInfo(String, String, String, String, String, Nullable<Int32>)
Retrieve a list of cost accounting records from a specific cost sequence
Declaration
ApiResponse<List<CostAccountingRecord>> ClientsClientIdFiscalYearsFiscalYearIdCostSystemsCostSystemIdCostSequencesCostSequenceIdCostAccountingRecordsGetWithHttpInfo(string clientId, string fiscalYearId, string costSystemId, string costSequenceId, string skip = null, int? top = null)
Parameters
| Type | Name | Description |
|---|---|---|
| System.String | clientId | ID of central client/company |
| System.String | fiscalYearId | ID of the fiscal year |
| System.String | costSystemId | Cost system number |
| System.String | costSequenceId | Cost sequence number |
| System.String | skip | States how many elements in the total number of items should be skipped. Example: skip=10 (optional) |
| System.Nullable<System.Int32> | top | States the maximum number of elements that should be contained within the total. Example: top=10 (optional) |
Returns
| Type | Description |
|---|---|
| ApiResponse<System.Collections.Generic.List<CostAccountingRecord>> | ApiResponse of List<CostAccountingRecord> |
Remarks
Retrieve a list of cost accounting records from a specific cost sequence. The list contains all cost relevant accounting records. Cost accounting records are independent from financial accounting and are processed within cost. They are recorded monthly. A maximum of 99999999 cost accounting records can be created per cost sequence.<br><br> Paging When accessing large quantities of data, it may happen that these cannot be delivered in a single request. In this case, paging has to be used in order to reduce the amount of data in a single request. Please use top and skip for this purpose. The cost accounting records will be sorted by accounting record ID. |Parameter|Description | |:- -- -- -:|- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- --| | skip | Number of cost accounting records that should be skipped. Example: skip=40 | | top | Number of cost accounting records that should be read as a result of the request.Example: top=20 | Use multiple data paths It is necessary to know the correct data path to address the correct data stock. If the correct data path cannot be determined in DATEVconnect, the desired data path can be defined by a configuration file to resolve this data path collision. Further information is provided in Info Database, document 1071637. URI examples Retrieving of the first 10 cost accounting records:<br> .../cost-accounting-records?top=10 Retrieving of the next 10 cost accounting records:<br> .../cost-accounting-records?top=10&skip=10
Exceptions
| Type | Condition |
|---|---|
| ApiException | Thrown when fails to make API call |
ClientsClientIdFiscalYearsFiscalYearIdCostSystemsCostSystemIdCostSequencesCostSequenceIdCostAccountingRecordsPost(String, String, String, String, CostAccountingRecord)
Create a cost accounting record in a specific cost sequence
Declaration
ErrorMessage ClientsClientIdFiscalYearsFiscalYearIdCostSystemsCostSystemIdCostSequencesCostSequenceIdCostAccountingRecordsPost(string clientId, string fiscalYearId, string costSystemId, string costSequenceId, CostAccountingRecord costAccountingRecord)
Parameters
| Type | Name | Description |
|---|---|---|
| System.String | clientId | ID of central client/company |
| System.String | fiscalYearId | ID of the fiscal year |
| System.String | costSystemId | Cost system number |
| System.String | costSequenceId | Cost sequence number |
| CostAccountingRecord | costAccountingRecord | KOST-Stapel |
Returns
| Type | Description |
|---|---|
| ErrorMessage | ErrorMessage |
Remarks
Create a cost accounting record in a specific cost sequence.<br> The cost accounting record transferred is provided in the already exisiting cost sequence.<br><br> Volume limit for accounting sequences The maximum number of transaction records that can be written per accounting sequence depends on the infrastructure used by the client (e.g. hardware, network, etc.).<br><br> Date specification with time zone The given time zone in the cost accounting record should correspond to the time zone set on the server, since otherwise dates may be deferred. As a rule, the given time zone is the Central European time zone (CET/CEST).<br><br> It is recommended that the time is set in this specific format 00:00:00.000 (hh:mm:ss.f).<br> Example: 2016-12-30T00:00:00.000+01:00<br> If 23:59.59.999 is specified as the exact date and time, depending on the database field, the next day may be displayed due to rounding differences. For example: JSON = 2016-01-01T23:59:59.999+01:00 (01.01.2016) | database = 2016-01-02T00:00.000 +01.00 (02.01.2016)<br><br> See also the official site of Microsoft:<br> English article: https://technet.microsoft.com/en-us/library/ms187819.aspx <br> German article: https://technet.microsoft.com/de-de/library/ms187819.aspx <br><br> Use multiple data paths It is necessary to know the correct data path to address the correct data stock. If the correct data path cannot be determined in DATEVconnect, the desired data path can be defined by a configuration file to resolve this data path collision. Further information is provided in Info Database, document 1071637.
Exceptions
| Type | Condition |
|---|---|
| ApiException | Thrown when fails to make API call |
ClientsClientIdFiscalYearsFiscalYearIdCostSystemsCostSystemIdCostSequencesCostSequenceIdCostAccountingRecordsPostAsync(String, String, String, String, CostAccountingRecord)
Create a cost accounting record in a specific cost sequence
Declaration
Task<ErrorMessage> ClientsClientIdFiscalYearsFiscalYearIdCostSystemsCostSystemIdCostSequencesCostSequenceIdCostAccountingRecordsPostAsync(string clientId, string fiscalYearId, string costSystemId, string costSequenceId, CostAccountingRecord costAccountingRecord)
Parameters
| Type | Name | Description |
|---|---|---|
| System.String | clientId | ID of central client/company |
| System.String | fiscalYearId | ID of the fiscal year |
| System.String | costSystemId | Cost system number |
| System.String | costSequenceId | Cost sequence number |
| CostAccountingRecord | costAccountingRecord | KOST-Stapel |
Returns
| Type | Description |
|---|---|
| System.Threading.Tasks.Task<ErrorMessage> | Task of ErrorMessage |
Remarks
Create a cost accounting record in a specific cost sequence.<br> The cost accounting record transferred is provided in the already exisiting cost sequence.<br><br> Volume limit for accounting sequences The maximum number of transaction records that can be written per accounting sequence depends on the infrastructure used by the client (e.g. hardware, network, etc.).<br><br> Date specification with time zone The given time zone in the cost accounting record should correspond to the time zone set on the server, since otherwise dates may be deferred. As a rule, the given time zone is the Central European time zone (CET/CEST).<br><br> It is recommended that the time is set in this specific format 00:00:00.000 (hh:mm:ss.f).<br> Example: 2016-12-30T00:00:00.000+01:00<br> If 23:59.59.999 is specified as the exact date and time, depending on the database field, the next day may be displayed due to rounding differences. For example: JSON = 2016-01-01T23:59:59.999+01:00 (01.01.2016) | database = 2016-01-02T00:00.000 +01.00 (02.01.2016)<br><br> See also the official site of Microsoft:<br> English article: https://technet.microsoft.com/en-us/library/ms187819.aspx <br> German article: https://technet.microsoft.com/de-de/library/ms187819.aspx <br><br> Use multiple data paths It is necessary to know the correct data path to address the correct data stock. If the correct data path cannot be determined in DATEVconnect, the desired data path can be defined by a configuration file to resolve this data path collision. Further information is provided in Info Database, document 1071637.
Exceptions
| Type | Condition |
|---|---|
| ApiException | Thrown when fails to make API call |
ClientsClientIdFiscalYearsFiscalYearIdCostSystemsCostSystemIdCostSequencesCostSequenceIdCostAccountingRecordsPostAsyncWithHttpInfo(String, String, String, String, CostAccountingRecord)
Create a cost accounting record in a specific cost sequence
Declaration
Task<ApiResponse<ErrorMessage>> ClientsClientIdFiscalYearsFiscalYearIdCostSystemsCostSystemIdCostSequencesCostSequenceIdCostAccountingRecordsPostAsyncWithHttpInfo(string clientId, string fiscalYearId, string costSystemId, string costSequenceId, CostAccountingRecord costAccountingRecord)
Parameters
| Type | Name | Description |
|---|---|---|
| System.String | clientId | ID of central client/company |
| System.String | fiscalYearId | ID of the fiscal year |
| System.String | costSystemId | Cost system number |
| System.String | costSequenceId | Cost sequence number |
| CostAccountingRecord | costAccountingRecord | KOST-Stapel |
Returns
| Type | Description |
|---|---|
| System.Threading.Tasks.Task<ApiResponse<ErrorMessage>> | Task of ApiResponse (ErrorMessage) |
Remarks
Create a cost accounting record in a specific cost sequence.<br> The cost accounting record transferred is provided in the already exisiting cost sequence.<br><br> Volume limit for accounting sequences The maximum number of transaction records that can be written per accounting sequence depends on the infrastructure used by the client (e.g. hardware, network, etc.).<br><br> Date specification with time zone The given time zone in the cost accounting record should correspond to the time zone set on the server, since otherwise dates may be deferred. As a rule, the given time zone is the Central European time zone (CET/CEST).<br><br> It is recommended that the time is set in this specific format 00:00:00.000 (hh:mm:ss.f).<br> Example: 2016-12-30T00:00:00.000+01:00<br> If 23:59.59.999 is specified as the exact date and time, depending on the database field, the next day may be displayed due to rounding differences. For example: JSON = 2016-01-01T23:59:59.999+01:00 (01.01.2016) | database = 2016-01-02T00:00.000 +01.00 (02.01.2016)<br><br> See also the official site of Microsoft:<br> English article: https://technet.microsoft.com/en-us/library/ms187819.aspx <br> German article: https://technet.microsoft.com/de-de/library/ms187819.aspx <br><br> Use multiple data paths It is necessary to know the correct data path to address the correct data stock. If the correct data path cannot be determined in DATEVconnect, the desired data path can be defined by a configuration file to resolve this data path collision. Further information is provided in Info Database, document 1071637.
Exceptions
| Type | Condition |
|---|---|
| ApiException | Thrown when fails to make API call |
ClientsClientIdFiscalYearsFiscalYearIdCostSystemsCostSystemIdCostSequencesCostSequenceIdCostAccountingRecordsPostWithHttpInfo(String, String, String, String, CostAccountingRecord)
Create a cost accounting record in a specific cost sequence
Declaration
ApiResponse<ErrorMessage> ClientsClientIdFiscalYearsFiscalYearIdCostSystemsCostSystemIdCostSequencesCostSequenceIdCostAccountingRecordsPostWithHttpInfo(string clientId, string fiscalYearId, string costSystemId, string costSequenceId, CostAccountingRecord costAccountingRecord)
Parameters
| Type | Name | Description |
|---|---|---|
| System.String | clientId | ID of central client/company |
| System.String | fiscalYearId | ID of the fiscal year |
| System.String | costSystemId | Cost system number |
| System.String | costSequenceId | Cost sequence number |
| CostAccountingRecord | costAccountingRecord | KOST-Stapel |
Returns
| Type | Description |
|---|---|
| ApiResponse<ErrorMessage> | ApiResponse of ErrorMessage |
Remarks
Create a cost accounting record in a specific cost sequence.<br> The cost accounting record transferred is provided in the already exisiting cost sequence.<br><br> Volume limit for accounting sequences The maximum number of transaction records that can be written per accounting sequence depends on the infrastructure used by the client (e.g. hardware, network, etc.).<br><br> Date specification with time zone The given time zone in the cost accounting record should correspond to the time zone set on the server, since otherwise dates may be deferred. As a rule, the given time zone is the Central European time zone (CET/CEST).<br><br> It is recommended that the time is set in this specific format 00:00:00.000 (hh:mm:ss.f).<br> Example: 2016-12-30T00:00:00.000+01:00<br> If 23:59.59.999 is specified as the exact date and time, depending on the database field, the next day may be displayed due to rounding differences. For example: JSON = 2016-01-01T23:59:59.999+01:00 (01.01.2016) | database = 2016-01-02T00:00.000 +01.00 (02.01.2016)<br><br> See also the official site of Microsoft:<br> English article: https://technet.microsoft.com/en-us/library/ms187819.aspx <br> German article: https://technet.microsoft.com/de-de/library/ms187819.aspx <br><br> Use multiple data paths It is necessary to know the correct data path to address the correct data stock. If the correct data path cannot be determined in DATEVconnect, the desired data path can be defined by a configuration file to resolve this data path collision. Further information is provided in Info Database, document 1071637.
Exceptions
| Type | Condition |
|---|---|
| ApiException | Thrown when fails to make API call |
ClientsClientIdFiscalYearsFiscalYearIdCostSystemsCostSystemIdCostSequencesCostSequenceIdGet(String, String, String, String, String)
Retrieve a specific cost sequence
Declaration
CostSequence ClientsClientIdFiscalYearsFiscalYearIdCostSystemsCostSystemIdCostSequencesCostSequenceIdGet(string clientId, string fiscalYearId, string costSystemId, string costSequenceId, string select = null)
Parameters
| Type | Name | Description |
|---|---|---|
| System.String | clientId | ID of central client/company |
| System.String | fiscalYearId | ID of the fiscal year |
| System.String | costSystemId | Cost system number |
| System.String | costSequenceId | Cost sequence number |
| System.String | select | Comma separated list of properties to which the results will then be limited. Example: select=id (optional) |
Returns
| Type | Description |
|---|---|
| CostSequence | CostSequence |
Remarks
Retrieve a specific cost sequence without accounting records. Use multiple data paths It is necessary to know the correct data path to address the correct data stock. If the correct data path cannot be determined in DATEVconnect, the desired data path can be defined by a configuration file to resolve this data path collision. Further information is provided in Info Database, document 1071637.
Exceptions
| Type | Condition |
|---|---|
| ApiException | Thrown when fails to make API call |
ClientsClientIdFiscalYearsFiscalYearIdCostSystemsCostSystemIdCostSequencesCostSequenceIdGetAsync(String, String, String, String, String)
Retrieve a specific cost sequence
Declaration
Task<CostSequence> ClientsClientIdFiscalYearsFiscalYearIdCostSystemsCostSystemIdCostSequencesCostSequenceIdGetAsync(string clientId, string fiscalYearId, string costSystemId, string costSequenceId, string select = null)
Parameters
| Type | Name | Description |
|---|---|---|
| System.String | clientId | ID of central client/company |
| System.String | fiscalYearId | ID of the fiscal year |
| System.String | costSystemId | Cost system number |
| System.String | costSequenceId | Cost sequence number |
| System.String | select | Comma separated list of properties to which the results will then be limited. Example: select=id (optional) |
Returns
| Type | Description |
|---|---|
| System.Threading.Tasks.Task<CostSequence> | Task of CostSequence |
Remarks
Retrieve a specific cost sequence without accounting records. Use multiple data paths It is necessary to know the correct data path to address the correct data stock. If the correct data path cannot be determined in DATEVconnect, the desired data path can be defined by a configuration file to resolve this data path collision. Further information is provided in Info Database, document 1071637.
Exceptions
| Type | Condition |
|---|---|
| ApiException | Thrown when fails to make API call |
ClientsClientIdFiscalYearsFiscalYearIdCostSystemsCostSystemIdCostSequencesCostSequenceIdGetAsyncWithHttpInfo(String, String, String, String, String)
Retrieve a specific cost sequence
Declaration
Task<ApiResponse<CostSequence>> ClientsClientIdFiscalYearsFiscalYearIdCostSystemsCostSystemIdCostSequencesCostSequenceIdGetAsyncWithHttpInfo(string clientId, string fiscalYearId, string costSystemId, string costSequenceId, string select = null)
Parameters
| Type | Name | Description |
|---|---|---|
| System.String | clientId | ID of central client/company |
| System.String | fiscalYearId | ID of the fiscal year |
| System.String | costSystemId | Cost system number |
| System.String | costSequenceId | Cost sequence number |
| System.String | select | Comma separated list of properties to which the results will then be limited. Example: select=id (optional) |
Returns
| Type | Description |
|---|---|
| System.Threading.Tasks.Task<ApiResponse<CostSequence>> | Task of ApiResponse (CostSequence) |
Remarks
Retrieve a specific cost sequence without accounting records. Use multiple data paths It is necessary to know the correct data path to address the correct data stock. If the correct data path cannot be determined in DATEVconnect, the desired data path can be defined by a configuration file to resolve this data path collision. Further information is provided in Info Database, document 1071637.
Exceptions
| Type | Condition |
|---|---|
| ApiException | Thrown when fails to make API call |
ClientsClientIdFiscalYearsFiscalYearIdCostSystemsCostSystemIdCostSequencesCostSequenceIdGetWithHttpInfo(String, String, String, String, String)
Retrieve a specific cost sequence
Declaration
ApiResponse<CostSequence> ClientsClientIdFiscalYearsFiscalYearIdCostSystemsCostSystemIdCostSequencesCostSequenceIdGetWithHttpInfo(string clientId, string fiscalYearId, string costSystemId, string costSequenceId, string select = null)
Parameters
| Type | Name | Description |
|---|---|---|
| System.String | clientId | ID of central client/company |
| System.String | fiscalYearId | ID of the fiscal year |
| System.String | costSystemId | Cost system number |
| System.String | costSequenceId | Cost sequence number |
| System.String | select | Comma separated list of properties to which the results will then be limited. Example: select=id (optional) |
Returns
| Type | Description |
|---|---|
| ApiResponse<CostSequence> | ApiResponse of CostSequence |
Remarks
Retrieve a specific cost sequence without accounting records. Use multiple data paths It is necessary to know the correct data path to address the correct data stock. If the correct data path cannot be determined in DATEVconnect, the desired data path can be defined by a configuration file to resolve this data path collision. Further information is provided in Info Database, document 1071637.
Exceptions
| Type | Condition |
|---|---|
| ApiException | Thrown when fails to make API call |
ClientsClientIdFiscalYearsFiscalYearIdCostSystemsCostSystemIdCostSequencesCostSequenceIdPut(String, String, String, String, CostSequence)
Create a cost sequence
Declaration
ErrorMessage ClientsClientIdFiscalYearsFiscalYearIdCostSystemsCostSystemIdCostSequencesCostSequenceIdPut(string clientId, string fiscalYearId, string costSystemId, string costSequenceId, CostSequence costSequences)
Parameters
| Type | Name | Description |
|---|---|---|
| System.String | clientId | ID of central client/company |
| System.String | fiscalYearId | ID of the fiscal year |
| System.String | costSystemId | Cost system number |
| System.String | costSequenceId | Cost sequence number |
| CostSequence | costSequences | Cost sequence |
Returns
| Type | Description |
|---|---|
| ErrorMessage | ErrorMessage |
Remarks
Create a cost sequence without accounting records into cost. The cost sequence transferred will be made available for processing in the "Stapelverarbeitung" of cost.<br> The maximum amount of cost sequences is 99999. Cost sequence numbers cannot be created when already assiged in cost.<br><br> Use multiple data paths It is necessary to know the correct data path to address the correct data stock. If the correct data path cannot be determined in DATEVconnect, the desired data path can be defined by a configuration file to resolve this data path collision. Further information is provided in Info Database, document 1071637.
Exceptions
| Type | Condition |
|---|---|
| ApiException | Thrown when fails to make API call |
ClientsClientIdFiscalYearsFiscalYearIdCostSystemsCostSystemIdCostSequencesCostSequenceIdPutAsync(String, String, String, String, CostSequence)
Create a cost sequence
Declaration
Task<ErrorMessage> ClientsClientIdFiscalYearsFiscalYearIdCostSystemsCostSystemIdCostSequencesCostSequenceIdPutAsync(string clientId, string fiscalYearId, string costSystemId, string costSequenceId, CostSequence costSequences)
Parameters
| Type | Name | Description |
|---|---|---|
| System.String | clientId | ID of central client/company |
| System.String | fiscalYearId | ID of the fiscal year |
| System.String | costSystemId | Cost system number |
| System.String | costSequenceId | Cost sequence number |
| CostSequence | costSequences | Cost sequence |
Returns
| Type | Description |
|---|---|
| System.Threading.Tasks.Task<ErrorMessage> | Task of ErrorMessage |
Remarks
Create a cost sequence without accounting records into cost. The cost sequence transferred will be made available for processing in the "Stapelverarbeitung" of cost.<br> The maximum amount of cost sequences is 99999. Cost sequence numbers cannot be created when already assiged in cost.<br><br> Use multiple data paths It is necessary to know the correct data path to address the correct data stock. If the correct data path cannot be determined in DATEVconnect, the desired data path can be defined by a configuration file to resolve this data path collision. Further information is provided in Info Database, document 1071637.
Exceptions
| Type | Condition |
|---|---|
| ApiException | Thrown when fails to make API call |
ClientsClientIdFiscalYearsFiscalYearIdCostSystemsCostSystemIdCostSequencesCostSequenceIdPutAsyncWithHttpInfo(String, String, String, String, CostSequence)
Create a cost sequence
Declaration
Task<ApiResponse<ErrorMessage>> ClientsClientIdFiscalYearsFiscalYearIdCostSystemsCostSystemIdCostSequencesCostSequenceIdPutAsyncWithHttpInfo(string clientId, string fiscalYearId, string costSystemId, string costSequenceId, CostSequence costSequences)
Parameters
| Type | Name | Description |
|---|---|---|
| System.String | clientId | ID of central client/company |
| System.String | fiscalYearId | ID of the fiscal year |
| System.String | costSystemId | Cost system number |
| System.String | costSequenceId | Cost sequence number |
| CostSequence | costSequences | Cost sequence |
Returns
| Type | Description |
|---|---|
| System.Threading.Tasks.Task<ApiResponse<ErrorMessage>> | Task of ApiResponse (ErrorMessage) |
Remarks
Create a cost sequence without accounting records into cost. The cost sequence transferred will be made available for processing in the "Stapelverarbeitung" of cost.<br> The maximum amount of cost sequences is 99999. Cost sequence numbers cannot be created when already assiged in cost.<br><br> Use multiple data paths It is necessary to know the correct data path to address the correct data stock. If the correct data path cannot be determined in DATEVconnect, the desired data path can be defined by a configuration file to resolve this data path collision. Further information is provided in Info Database, document 1071637.
Exceptions
| Type | Condition |
|---|---|
| ApiException | Thrown when fails to make API call |
ClientsClientIdFiscalYearsFiscalYearIdCostSystemsCostSystemIdCostSequencesCostSequenceIdPutWithHttpInfo(String, String, String, String, CostSequence)
Create a cost sequence
Declaration
ApiResponse<ErrorMessage> ClientsClientIdFiscalYearsFiscalYearIdCostSystemsCostSystemIdCostSequencesCostSequenceIdPutWithHttpInfo(string clientId, string fiscalYearId, string costSystemId, string costSequenceId, CostSequence costSequences)
Parameters
| Type | Name | Description |
|---|---|---|
| System.String | clientId | ID of central client/company |
| System.String | fiscalYearId | ID of the fiscal year |
| System.String | costSystemId | Cost system number |
| System.String | costSequenceId | Cost sequence number |
| CostSequence | costSequences | Cost sequence |
Returns
| Type | Description |
|---|---|
| ApiResponse<ErrorMessage> | ApiResponse of ErrorMessage |
Remarks
Create a cost sequence without accounting records into cost. The cost sequence transferred will be made available for processing in the "Stapelverarbeitung" of cost.<br> The maximum amount of cost sequences is 99999. Cost sequence numbers cannot be created when already assiged in cost.<br><br> Use multiple data paths It is necessary to know the correct data path to address the correct data stock. If the correct data path cannot be determined in DATEVconnect, the desired data path can be defined by a configuration file to resolve this data path collision. Further information is provided in Info Database, document 1071637.
Exceptions
| Type | Condition |
|---|---|
| ApiException | Thrown when fails to make API call |
ClientsClientIdFiscalYearsFiscalYearIdCostSystemsCostSystemIdCostSequencesGet(String, String, String, String, String, Nullable<Int32>)
Retrieve a list of cost sequences
Declaration
List<CostSequence> ClientsClientIdFiscalYearsFiscalYearIdCostSystemsCostSystemIdCostSequencesGet(string clientId, string fiscalYearId, string costSystemId, string select = null, string skip = null, int? top = null)
Parameters
| Type | Name | Description |
|---|---|---|
| System.String | clientId | ID of central client/company |
| System.String | fiscalYearId | ID of the fiscal year |
| System.String | costSystemId | Cost system number |
| System.String | select | Comma separated list of properties to which the results will then be limited. Example: select=id (optional) |
| System.String | skip | States how many elements in the total number of items should be skipped. Example: skip=10 (optional) |
| System.Nullable<System.Int32> | top | States the maximum number of elements that should be contained within the total. Example: top=10 (optional) |
Returns
| Type | Description |
|---|---|
| System.Collections.Generic.List<CostSequence> | List<CostSequence> |
Remarks
Retrieve a list of cost sequences. The maximum amount of cost sequences can be 99999.<br><br> Paging When accessing large quantities of data, it may happen that these cannot be delivered in a single request. In this case, paging has to be used in order to reduce the amount of data in a single request. Please use top and skip for this purpose. The cost sequences will be sorted by cost sequence ID. |Parameter|Description | |:- -- -- -:|- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- --| | skip | Number of cost sequences that should be skipped. Example: skip=40 | | top | Number of cost sequences that should be read as a result of the request.Example: top=20 | Use multiple data paths It is necessary to know the correct data path to address the correct data stock. If the correct data path cannot be determined in DATEVconnect, the desired data path can be defined by a configuration file to resolve this data path collision. Further information is provided in Info Database, document 1071637. URI examples Retrieving of the first 10 cost sequences:<br> .../cost-sequences?top=10 Retrieving of the next 10 cost sequences:<br> .../cost-sequences?top=10&skip=10
Exceptions
| Type | Condition |
|---|---|
| ApiException | Thrown when fails to make API call |
ClientsClientIdFiscalYearsFiscalYearIdCostSystemsCostSystemIdCostSequencesGetAsync(String, String, String, String, String, Nullable<Int32>)
Retrieve a list of cost sequences
Declaration
Task<List<CostSequence>> ClientsClientIdFiscalYearsFiscalYearIdCostSystemsCostSystemIdCostSequencesGetAsync(string clientId, string fiscalYearId, string costSystemId, string select = null, string skip = null, int? top = null)
Parameters
| Type | Name | Description |
|---|---|---|
| System.String | clientId | ID of central client/company |
| System.String | fiscalYearId | ID of the fiscal year |
| System.String | costSystemId | Cost system number |
| System.String | select | Comma separated list of properties to which the results will then be limited. Example: select=id (optional) |
| System.String | skip | States how many elements in the total number of items should be skipped. Example: skip=10 (optional) |
| System.Nullable<System.Int32> | top | States the maximum number of elements that should be contained within the total. Example: top=10 (optional) |
Returns
| Type | Description |
|---|---|
| System.Threading.Tasks.Task<System.Collections.Generic.List<CostSequence>> | Task of List<CostSequence> |
Remarks
Retrieve a list of cost sequences. The maximum amount of cost sequences can be 99999.<br><br> Paging When accessing large quantities of data, it may happen that these cannot be delivered in a single request. In this case, paging has to be used in order to reduce the amount of data in a single request. Please use top and skip for this purpose. The cost sequences will be sorted by cost sequence ID. |Parameter|Description | |:- -- -- -:|- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- --| | skip | Number of cost sequences that should be skipped. Example: skip=40 | | top | Number of cost sequences that should be read as a result of the request.Example: top=20 | Use multiple data paths It is necessary to know the correct data path to address the correct data stock. If the correct data path cannot be determined in DATEVconnect, the desired data path can be defined by a configuration file to resolve this data path collision. Further information is provided in Info Database, document 1071637. URI examples Retrieving of the first 10 cost sequences:<br> .../cost-sequences?top=10 Retrieving of the next 10 cost sequences:<br> .../cost-sequences?top=10&skip=10
Exceptions
| Type | Condition |
|---|---|
| ApiException | Thrown when fails to make API call |
ClientsClientIdFiscalYearsFiscalYearIdCostSystemsCostSystemIdCostSequencesGetAsyncWithHttpInfo(String, String, String, String, String, Nullable<Int32>)
Retrieve a list of cost sequences
Declaration
Task<ApiResponse<List<CostSequence>>> ClientsClientIdFiscalYearsFiscalYearIdCostSystemsCostSystemIdCostSequencesGetAsyncWithHttpInfo(string clientId, string fiscalYearId, string costSystemId, string select = null, string skip = null, int? top = null)
Parameters
| Type | Name | Description |
|---|---|---|
| System.String | clientId | ID of central client/company |
| System.String | fiscalYearId | ID of the fiscal year |
| System.String | costSystemId | Cost system number |
| System.String | select | Comma separated list of properties to which the results will then be limited. Example: select=id (optional) |
| System.String | skip | States how many elements in the total number of items should be skipped. Example: skip=10 (optional) |
| System.Nullable<System.Int32> | top | States the maximum number of elements that should be contained within the total. Example: top=10 (optional) |
Returns
| Type | Description |
|---|---|
| System.Threading.Tasks.Task<ApiResponse<System.Collections.Generic.List<CostSequence>>> | Task of ApiResponse (List<CostSequence>) |
Remarks
Retrieve a list of cost sequences. The maximum amount of cost sequences can be 99999.<br><br> Paging When accessing large quantities of data, it may happen that these cannot be delivered in a single request. In this case, paging has to be used in order to reduce the amount of data in a single request. Please use top and skip for this purpose. The cost sequences will be sorted by cost sequence ID. |Parameter|Description | |:- -- -- -:|- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- --| | skip | Number of cost sequences that should be skipped. Example: skip=40 | | top | Number of cost sequences that should be read as a result of the request.Example: top=20 | Use multiple data paths It is necessary to know the correct data path to address the correct data stock. If the correct data path cannot be determined in DATEVconnect, the desired data path can be defined by a configuration file to resolve this data path collision. Further information is provided in Info Database, document 1071637. URI examples Retrieving of the first 10 cost sequences:<br> .../cost-sequences?top=10 Retrieving of the next 10 cost sequences:<br> .../cost-sequences?top=10&skip=10
Exceptions
| Type | Condition |
|---|---|
| ApiException | Thrown when fails to make API call |
ClientsClientIdFiscalYearsFiscalYearIdCostSystemsCostSystemIdCostSequencesGetWithHttpInfo(String, String, String, String, String, Nullable<Int32>)
Retrieve a list of cost sequences
Declaration
ApiResponse<List<CostSequence>> ClientsClientIdFiscalYearsFiscalYearIdCostSystemsCostSystemIdCostSequencesGetWithHttpInfo(string clientId, string fiscalYearId, string costSystemId, string select = null, string skip = null, int? top = null)
Parameters
| Type | Name | Description |
|---|---|---|
| System.String | clientId | ID of central client/company |
| System.String | fiscalYearId | ID of the fiscal year |
| System.String | costSystemId | Cost system number |
| System.String | select | Comma separated list of properties to which the results will then be limited. Example: select=id (optional) |
| System.String | skip | States how many elements in the total number of items should be skipped. Example: skip=10 (optional) |
| System.Nullable<System.Int32> | top | States the maximum number of elements that should be contained within the total. Example: top=10 (optional) |
Returns
| Type | Description |
|---|---|
| ApiResponse<System.Collections.Generic.List<CostSequence>> | ApiResponse of List<CostSequence> |
Remarks
Retrieve a list of cost sequences. The maximum amount of cost sequences can be 99999.<br><br> Paging When accessing large quantities of data, it may happen that these cannot be delivered in a single request. In this case, paging has to be used in order to reduce the amount of data in a single request. Please use top and skip for this purpose. The cost sequences will be sorted by cost sequence ID. |Parameter|Description | |:- -- -- -:|- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- --| | skip | Number of cost sequences that should be skipped. Example: skip=40 | | top | Number of cost sequences that should be read as a result of the request.Example: top=20 | Use multiple data paths It is necessary to know the correct data path to address the correct data stock. If the correct data path cannot be determined in DATEVconnect, the desired data path can be defined by a configuration file to resolve this data path collision. Further information is provided in Info Database, document 1071637. URI examples Retrieving of the first 10 cost sequences:<br> .../cost-sequences?top=10 Retrieving of the next 10 cost sequences:<br> .../cost-sequences?top=10&skip=10
Exceptions
| Type | Condition |
|---|---|
| ApiException | Thrown when fails to make API call |