lockstep_rails 0.3.70 → 0.3.71
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/app/platform_api/schema/company_magic_link_summary.rb +14 -14
- data/app/platform_api/schema/credit_memo_applied.rb +4 -5
- data/app/platform_api/schema/financial_account.rb +2 -2
- data/app/platform_api/schema/invoice.rb +18 -5
- data/app/platform_api/schema/invoice_line.rb +4 -5
- data/app/platform_api/schema/invoice_sync.rb +8 -0
- data/app/platform_api/schema/invoice_workflow_status_history.rb +49 -0
- data/app/platform_api/schema/journal_entry.rb +17 -17
- data/app/platform_api/schema/journal_entry_line.rb +21 -17
- data/app/platform_api/schema/journal_entry_line_sync.rb +4 -0
- data/app/platform_api/schema/payment.rb +4 -5
- data/app/platform_api/schema/payment_applied.rb +4 -5
- data/app/platform_api/schema/sync_request.rb +2 -0
- data/app/platform_api/schema/workflow_status.rb +12 -9
- data/app/platform_api/swagger.json +313 -428
- data/lib/lockstep_rails/version.rb +1 -1
- metadata +3 -2
@@ -8232,31 +8232,17 @@
|
|
8232
8232
|
"type": "string",
|
8233
8233
|
"format": "uuid"
|
8234
8234
|
}
|
8235
|
-
}
|
8236
|
-
|
8237
|
-
|
8238
|
-
|
8239
|
-
|
8240
|
-
"
|
8241
|
-
"
|
8242
|
-
|
8243
|
-
"additionalProperties": { }
|
8244
|
-
}
|
8245
|
-
},
|
8246
|
-
"text/json": {
|
8247
|
-
"schema": {
|
8248
|
-
"type": "object",
|
8249
|
-
"additionalProperties": { }
|
8250
|
-
}
|
8251
|
-
},
|
8252
|
-
"application/*+json": {
|
8253
|
-
"schema": {
|
8254
|
-
"type": "object",
|
8255
|
-
"additionalProperties": { }
|
8256
|
-
}
|
8235
|
+
},
|
8236
|
+
{
|
8237
|
+
"name": "updates",
|
8238
|
+
"in": "query",
|
8239
|
+
"description": "A list of changes to apply to this Group Account",
|
8240
|
+
"schema": {
|
8241
|
+
"type": "object",
|
8242
|
+
"additionalProperties": { }
|
8257
8243
|
}
|
8258
8244
|
}
|
8259
|
-
|
8245
|
+
],
|
8260
8246
|
"responses": {
|
8261
8247
|
"400": {
|
8262
8248
|
"description": "Bad Request",
|
@@ -9334,7 +9320,7 @@
|
|
9334
9320
|
{
|
9335
9321
|
"name": "include",
|
9336
9322
|
"in": "query",
|
9337
|
-
"description": "To fetch additional data on this object, specify the list of elements to retrieve.\r\n \r\nAvailable collections: Addresses, Lines, Payments, Notes, Attachments, Company, Customer, CustomFields, CreditMemos",
|
9323
|
+
"description": "To fetch additional data on this object, specify the list of elements to retrieve.\r\n \r\nAvailable collections: Addresses, Lines, Payments, Notes, Attachments, Company, Customer, CustomFields, CreditMemos, WorkflowStatuses",
|
9338
9324
|
"schema": {
|
9339
9325
|
"type": "string"
|
9340
9326
|
}
|
@@ -9567,6 +9553,83 @@
|
|
9567
9553
|
]
|
9568
9554
|
}
|
9569
9555
|
},
|
9556
|
+
"/api/v1/Invoices/{id}/workflow-status-history": {
|
9557
|
+
"get": {
|
9558
|
+
"tags": [
|
9559
|
+
"Invoices"
|
9560
|
+
],
|
9561
|
+
"summary": "Retrieve Invoice Workflow Status Histories",
|
9562
|
+
"description": "Retrieves the Invoice Workflow Status Histories specified by the unique identifier of the Invoice.\r\n\r\nAn Invoice Workflow Status History represents a prior Workflow Status that was assigned to an Invoice.\n\n### Roles\n\nTo call this endpoint, you must have one of these roles:\n\n* Group Owner\n* Group Admin\n* Member\n* Read-Only\n\n\nYou can view your roles with the [Status](https://developer.lockstep.io/reference/get_api-v1-status) API.",
|
9563
|
+
"operationId": "v1_Invoices_RetrieveInvoiceWorkflowStatusHistories",
|
9564
|
+
"parameters": [
|
9565
|
+
{
|
9566
|
+
"name": "id",
|
9567
|
+
"in": "path",
|
9568
|
+
"description": "The unique Accounting Data Service Platform ID number of the Invoice.",
|
9569
|
+
"required": true,
|
9570
|
+
"schema": {
|
9571
|
+
"type": "string",
|
9572
|
+
"format": "uuid"
|
9573
|
+
}
|
9574
|
+
}
|
9575
|
+
],
|
9576
|
+
"responses": {
|
9577
|
+
"200": {
|
9578
|
+
"description": "Success",
|
9579
|
+
"content": {
|
9580
|
+
"application/json": {
|
9581
|
+
"schema": {
|
9582
|
+
"type": "array",
|
9583
|
+
"items": {
|
9584
|
+
"$ref": "#/components/schemas/InvoiceWorkflowStatusHistoryModel"
|
9585
|
+
}
|
9586
|
+
}
|
9587
|
+
},
|
9588
|
+
"text/json": {
|
9589
|
+
"schema": {
|
9590
|
+
"type": "array",
|
9591
|
+
"items": {
|
9592
|
+
"$ref": "#/components/schemas/InvoiceWorkflowStatusHistoryModel"
|
9593
|
+
}
|
9594
|
+
}
|
9595
|
+
}
|
9596
|
+
}
|
9597
|
+
},
|
9598
|
+
"404": {
|
9599
|
+
"description": "Not Found",
|
9600
|
+
"content": {
|
9601
|
+
"application/json": {
|
9602
|
+
"schema": {
|
9603
|
+
"$ref": "#/components/schemas/ProblemDetails"
|
9604
|
+
}
|
9605
|
+
},
|
9606
|
+
"text/json": {
|
9607
|
+
"schema": {
|
9608
|
+
"$ref": "#/components/schemas/ProblemDetails"
|
9609
|
+
}
|
9610
|
+
}
|
9611
|
+
}
|
9612
|
+
},
|
9613
|
+
"401": {
|
9614
|
+
"description": "Unauthorized"
|
9615
|
+
},
|
9616
|
+
"403": {
|
9617
|
+
"description": "Forbidden"
|
9618
|
+
}
|
9619
|
+
},
|
9620
|
+
"security": [
|
9621
|
+
{
|
9622
|
+
"oauth2": [ ]
|
9623
|
+
},
|
9624
|
+
{
|
9625
|
+
"bearer_token": [ ]
|
9626
|
+
},
|
9627
|
+
{
|
9628
|
+
"api_key": [ ]
|
9629
|
+
}
|
9630
|
+
]
|
9631
|
+
}
|
9632
|
+
},
|
9570
9633
|
"/api/v1/Invoices": {
|
9571
9634
|
"post": {
|
9572
9635
|
"tags": [
|
@@ -9575,6 +9638,17 @@
|
|
9575
9638
|
"summary": "Create Invoices",
|
9576
9639
|
"description": "Creates one or more Invoices within this account and returns the records as created.\r\n\r\nAn Invoice represents a bill sent from one company to another. The creator of the invoice is identified by the `CompanyId` field, and the recipient of the invoice is identified by the `CustomerId` field. Most invoices are uniquely identified both by a Lockstep Platform ID number and a customer ERP \"key\" that was generated by the system that originated the invoice. Invoices have a total amount and a due date, and when some payments have been made on the Invoice the `TotalAmount` and the `OutstandingBalanceAmount` may be different.\n\n### Roles\n\nTo call this endpoint, you must have one of these roles:\n\n* Group Owner\n* Group Admin\n* Member\n\n\nYou can view your roles with the [Status](https://developer.lockstep.io/reference/get_api-v1-status) API.",
|
9577
9640
|
"operationId": "v1_Invoices_CreateInvoices",
|
9641
|
+
"parameters": [
|
9642
|
+
{
|
9643
|
+
"name": "customerCompanyId",
|
9644
|
+
"in": "query",
|
9645
|
+
"description": "The ID of the customer company. Only to be used with the UBL file upload multipart/form-data option.",
|
9646
|
+
"schema": {
|
9647
|
+
"type": "string",
|
9648
|
+
"format": "uuid"
|
9649
|
+
}
|
9650
|
+
}
|
9651
|
+
],
|
9578
9652
|
"requestBody": {
|
9579
9653
|
"description": "Upload a UBL file or provide an InvoiceModel array",
|
9580
9654
|
"content": {
|
@@ -9770,7 +9844,7 @@
|
|
9770
9844
|
{
|
9771
9845
|
"name": "include",
|
9772
9846
|
"in": "query",
|
9773
|
-
"description": "To fetch additional data on this object, specify the list of elements to retrieve.\r\n \r\nAvailable collections: Addresses, Lines, Payments, Notes, Attachments, Company, Customer, CustomFields, CreditMemos",
|
9847
|
+
"description": "To fetch additional data on this object, specify the list of elements to retrieve.\r\n \r\nAvailable collections: Addresses, Lines, Payments, Notes, Attachments, Company, Customer, CustomFields, CreditMemos, WorkflowStatuses",
|
9774
9848
|
"schema": {
|
9775
9849
|
"type": "string"
|
9776
9850
|
}
|
@@ -11325,8 +11399,8 @@
|
|
11325
11399
|
}
|
11326
11400
|
},
|
11327
11401
|
"responses": {
|
11328
|
-
"
|
11329
|
-
"description": "
|
11402
|
+
"200": {
|
11403
|
+
"description": "Success",
|
11330
11404
|
"content": {
|
11331
11405
|
"application/json": {
|
11332
11406
|
"schema": {
|
@@ -12733,100 +12807,6 @@
|
|
12733
12807
|
]
|
12734
12808
|
}
|
12735
12809
|
},
|
12736
|
-
"/api/v1/Payments/erp-write": {
|
12737
|
-
"post": {
|
12738
|
-
"tags": [
|
12739
|
-
"Payments"
|
12740
|
-
],
|
12741
|
-
"summary": "Write payments to connected ERP",
|
12742
|
-
"description": "**This API endpoint is under maintenance and may not function properly.** Schedule an ERP post request for payments.\r\n\r\nThe payments must be associated with an active app enrollment and have a valid `AppEnrollmentId`.\n\n### Roles\n\nTo call this endpoint, you must have one of these roles:\n\n* Group Owner\n* Group Admin\n\n\nYou can view your roles with the [Status](https://developer.lockstep.io/reference/get_api-v1-status) API.",
|
12743
|
-
"operationId": "v1_Payments_ErpWritePayments",
|
12744
|
-
"requestBody": {
|
12745
|
-
"description": "The payments to submit to the connected ERP",
|
12746
|
-
"content": {
|
12747
|
-
"application/json": {
|
12748
|
-
"schema": {
|
12749
|
-
"allOf": [
|
12750
|
-
{
|
12751
|
-
"$ref": "#/components/schemas/InsertPaymentRequestModelErpWriteSyncSubmitModel"
|
12752
|
-
}
|
12753
|
-
],
|
12754
|
-
"description": "Lockstep.Shared.Models.Sync.ErpWriteSyncSubmitModel`1 represents a request to write back a collection\r\n of requests to the connected AppEnrollment."
|
12755
|
-
}
|
12756
|
-
},
|
12757
|
-
"text/json": {
|
12758
|
-
"schema": {
|
12759
|
-
"allOf": [
|
12760
|
-
{
|
12761
|
-
"$ref": "#/components/schemas/InsertPaymentRequestModelErpWriteSyncSubmitModel"
|
12762
|
-
}
|
12763
|
-
],
|
12764
|
-
"description": "Lockstep.Shared.Models.Sync.ErpWriteSyncSubmitModel`1 represents a request to write back a collection\r\n of requests to the connected AppEnrollment."
|
12765
|
-
}
|
12766
|
-
},
|
12767
|
-
"application/*+json": {
|
12768
|
-
"schema": {
|
12769
|
-
"allOf": [
|
12770
|
-
{
|
12771
|
-
"$ref": "#/components/schemas/InsertPaymentRequestModelErpWriteSyncSubmitModel"
|
12772
|
-
}
|
12773
|
-
],
|
12774
|
-
"description": "Lockstep.Shared.Models.Sync.ErpWriteSyncSubmitModel`1 represents a request to write back a collection\r\n of requests to the connected AppEnrollment."
|
12775
|
-
}
|
12776
|
-
}
|
12777
|
-
}
|
12778
|
-
},
|
12779
|
-
"responses": {
|
12780
|
-
"200": {
|
12781
|
-
"description": "Success",
|
12782
|
-
"content": {
|
12783
|
-
"application/json": {
|
12784
|
-
"schema": {
|
12785
|
-
"$ref": "#/components/schemas/PaymentModelErpWriteResult"
|
12786
|
-
}
|
12787
|
-
},
|
12788
|
-
"text/json": {
|
12789
|
-
"schema": {
|
12790
|
-
"$ref": "#/components/schemas/PaymentModelErpWriteResult"
|
12791
|
-
}
|
12792
|
-
}
|
12793
|
-
}
|
12794
|
-
},
|
12795
|
-
"400": {
|
12796
|
-
"description": "Bad Request",
|
12797
|
-
"content": {
|
12798
|
-
"application/json": {
|
12799
|
-
"schema": {
|
12800
|
-
"$ref": "#/components/schemas/ProblemDetails"
|
12801
|
-
}
|
12802
|
-
},
|
12803
|
-
"text/json": {
|
12804
|
-
"schema": {
|
12805
|
-
"$ref": "#/components/schemas/ProblemDetails"
|
12806
|
-
}
|
12807
|
-
}
|
12808
|
-
}
|
12809
|
-
},
|
12810
|
-
"401": {
|
12811
|
-
"description": "Unauthorized"
|
12812
|
-
},
|
12813
|
-
"403": {
|
12814
|
-
"description": "Forbidden"
|
12815
|
-
}
|
12816
|
-
},
|
12817
|
-
"security": [
|
12818
|
-
{
|
12819
|
-
"oauth2": [ ]
|
12820
|
-
},
|
12821
|
-
{
|
12822
|
-
"bearer_token": [ ]
|
12823
|
-
},
|
12824
|
-
{
|
12825
|
-
"api_key": [ ]
|
12826
|
-
}
|
12827
|
-
]
|
12828
|
-
}
|
12829
|
-
},
|
12830
12810
|
"/api/v1/payments-applied/{id}": {
|
12831
12811
|
"get": {
|
12832
12812
|
"tags": [
|
@@ -16229,6 +16209,38 @@
|
|
16229
16209
|
]
|
16230
16210
|
}
|
16231
16211
|
},
|
16212
|
+
"/api/v1/Status/auth": {
|
16213
|
+
"get": {
|
16214
|
+
"tags": [
|
16215
|
+
"Status"
|
16216
|
+
],
|
16217
|
+
"summary": "Check Authentication",
|
16218
|
+
"description": "Verifies that the specified authentication token is valid and returns a successful code if it is.",
|
16219
|
+
"operationId": "v1_Status_CheckAuthentication",
|
16220
|
+
"responses": {
|
16221
|
+
"200": {
|
16222
|
+
"description": "Success"
|
16223
|
+
},
|
16224
|
+
"401": {
|
16225
|
+
"description": "Unauthorized"
|
16226
|
+
},
|
16227
|
+
"403": {
|
16228
|
+
"description": "Forbidden"
|
16229
|
+
}
|
16230
|
+
},
|
16231
|
+
"security": [
|
16232
|
+
{
|
16233
|
+
"oauth2": [ ]
|
16234
|
+
},
|
16235
|
+
{
|
16236
|
+
"bearer_token": [ ]
|
16237
|
+
},
|
16238
|
+
{
|
16239
|
+
"api_key": [ ]
|
16240
|
+
}
|
16241
|
+
]
|
16242
|
+
}
|
16243
|
+
},
|
16232
16244
|
"/api/v1/Sync": {
|
16233
16245
|
"post": {
|
16234
16246
|
"tags": [
|
@@ -18050,31 +18062,17 @@
|
|
18050
18062
|
"type": "string",
|
18051
18063
|
"format": "uuid"
|
18052
18064
|
}
|
18053
|
-
}
|
18054
|
-
|
18055
|
-
|
18056
|
-
|
18057
|
-
|
18058
|
-
"
|
18059
|
-
"
|
18060
|
-
|
18061
|
-
"additionalProperties": { }
|
18062
|
-
}
|
18063
|
-
},
|
18064
|
-
"text/json": {
|
18065
|
-
"schema": {
|
18066
|
-
"type": "object",
|
18067
|
-
"additionalProperties": { }
|
18068
|
-
}
|
18069
|
-
},
|
18070
|
-
"application/*+json": {
|
18071
|
-
"schema": {
|
18072
|
-
"type": "object",
|
18073
|
-
"additionalProperties": { }
|
18074
|
-
}
|
18065
|
+
},
|
18066
|
+
{
|
18067
|
+
"name": "updates",
|
18068
|
+
"in": "query",
|
18069
|
+
"description": "A list of changes to apply to this User",
|
18070
|
+
"schema": {
|
18071
|
+
"type": "object",
|
18072
|
+
"additionalProperties": { }
|
18075
18073
|
}
|
18076
18074
|
}
|
18077
|
-
|
18075
|
+
],
|
18078
18076
|
"responses": {
|
18079
18077
|
"400": {
|
18080
18078
|
"description": "Bad Request",
|
@@ -24463,19 +24461,21 @@
|
|
24463
24461
|
"description": "The unique ID of this record as it was known in its originating financial system.\r\n \r\nIf this company record was imported from a financial system, it will have the value `ErpKey`\r\nset to the original primary key number of the record as it was known in the originating financial\r\nsystem. If this record was not imported, this value will be `null`.\r\n \r\nFor more information, see [Identity Columns](https://developer.lockstep.io/docs/identity-columns).",
|
24464
24462
|
"nullable": true
|
24465
24463
|
},
|
24466
|
-
"
|
24464
|
+
"erpUpdateStatus": {
|
24467
24465
|
"allOf": [
|
24468
24466
|
{
|
24469
|
-
"$ref": "#/components/schemas/
|
24467
|
+
"$ref": "#/components/schemas/ErpUpdateStatus"
|
24470
24468
|
}
|
24471
24469
|
],
|
24472
|
-
"description": "Possible statuses for a record that supports ERP
|
24473
|
-
|
24474
|
-
|
24475
|
-
|
24476
|
-
|
24477
|
-
|
24478
|
-
|
24470
|
+
"description": "Possible statuses for a record that supports ERP Update."
|
24471
|
+
},
|
24472
|
+
"erpUpdateAction": {
|
24473
|
+
"allOf": [
|
24474
|
+
{
|
24475
|
+
"$ref": "#/components/schemas/ErpUpdateAction"
|
24476
|
+
}
|
24477
|
+
],
|
24478
|
+
"description": "Possible actions for a record that supports ERP Update.",
|
24479
24479
|
"readOnly": true
|
24480
24480
|
},
|
24481
24481
|
"entryNumber": {
|
@@ -25686,6 +25686,29 @@
|
|
25686
25686
|
},
|
25687
25687
|
"additionalProperties": false
|
25688
25688
|
},
|
25689
|
+
"ErpUpdateAction": {
|
25690
|
+
"enum": [
|
25691
|
+
0,
|
25692
|
+
1,
|
25693
|
+
2,
|
25694
|
+
3
|
25695
|
+
],
|
25696
|
+
"type": "integer",
|
25697
|
+
"description": "Possible actions for a record that supports ERP Update.",
|
25698
|
+
"format": "int32"
|
25699
|
+
},
|
25700
|
+
"ErpUpdateStatus": {
|
25701
|
+
"enum": [
|
25702
|
+
0,
|
25703
|
+
1,
|
25704
|
+
2,
|
25705
|
+
3,
|
25706
|
+
4
|
25707
|
+
],
|
25708
|
+
"type": "integer",
|
25709
|
+
"description": "Possible statuses for a record that supports ERP Update.",
|
25710
|
+
"format": "int32"
|
25711
|
+
},
|
25689
25712
|
"ErpWriteStatuses": {
|
25690
25713
|
"enum": [
|
25691
25714
|
0,
|
@@ -25981,7 +26004,7 @@
|
|
25981
26004
|
"maxLength": 8,
|
25982
26005
|
"minLength": 0,
|
25983
26006
|
"type": "string",
|
25984
|
-
"description": "The status of the Financial Account. Possible values are
|
26007
|
+
"description": "The status of the Financial Account. Possible values are Active,\r\nInactive, Deleted or Archived.",
|
25985
26008
|
"nullable": true
|
25986
26009
|
},
|
25987
26010
|
"cashflowType": {
|
@@ -26562,205 +26585,6 @@
|
|
26562
26585
|
"additionalProperties": false,
|
26563
26586
|
"description": "Represents an account for an entire group"
|
26564
26587
|
},
|
26565
|
-
"InsertPaymentAppliedRequestModel": {
|
26566
|
-
"type": "object",
|
26567
|
-
"properties": {
|
26568
|
-
"paymentAppliedId": {
|
26569
|
-
"type": "string",
|
26570
|
-
"description": "The unique ID of this record, automatically assigned by Lockstep when this record is\r\nadded to the Lockstep platform.\r\n \r\nFor the ID of this record in its originating financial system, see `ErpKey`.",
|
26571
|
-
"format": "uuid",
|
26572
|
-
"nullable": true
|
26573
|
-
},
|
26574
|
-
"invoiceId": {
|
26575
|
-
"type": "string",
|
26576
|
-
"description": "The Invoice this payment is applied to.",
|
26577
|
-
"format": "uuid",
|
26578
|
-
"nullable": true
|
26579
|
-
},
|
26580
|
-
"paymentId": {
|
26581
|
-
"type": "string",
|
26582
|
-
"description": "The Payment this application applies from.",
|
26583
|
-
"format": "uuid",
|
26584
|
-
"nullable": true
|
26585
|
-
},
|
26586
|
-
"erpKey": {
|
26587
|
-
"type": "string",
|
26588
|
-
"description": "The unique ID of this record as it was known in its originating financial system.\r\n \r\nIf this company record was imported from a financial system, it will have the value `ErpKey`\r\nset to the original primary key number of the record as it was known in the originating financial\r\nsystem. If this record was not imported, this value will be `null`.\r\n \r\nFor more information, see [Identity Columns](https://developer.lockstep.io/docs/identity-columns).",
|
26589
|
-
"nullable": true
|
26590
|
-
},
|
26591
|
-
"invoiceErpKey": {
|
26592
|
-
"type": "string",
|
26593
|
-
"description": "The ERP key of the Invoice this payment is applied to.",
|
26594
|
-
"nullable": true
|
26595
|
-
},
|
26596
|
-
"applyToInvoiceDate": {
|
26597
|
-
"type": "string",
|
26598
|
-
"description": "The date this payment was applied to this invoice.",
|
26599
|
-
"format": "date-time"
|
26600
|
-
},
|
26601
|
-
"paymentAppliedAmount": {
|
26602
|
-
"type": "number",
|
26603
|
-
"description": "The total amount that was applied to this Invoice from the Payment.",
|
26604
|
-
"format": "double"
|
26605
|
-
}
|
26606
|
-
},
|
26607
|
-
"additionalProperties": false,
|
26608
|
-
"description": "A request to insert a payment application"
|
26609
|
-
},
|
26610
|
-
"InsertPaymentRequestModel": {
|
26611
|
-
"type": "object",
|
26612
|
-
"properties": {
|
26613
|
-
"appEnrollmentId": {
|
26614
|
-
"type": "string",
|
26615
|
-
"description": "The AppEnrollmentId of the application to write this record to.",
|
26616
|
-
"format": "uuid",
|
26617
|
-
"nullable": true
|
26618
|
-
},
|
26619
|
-
"paymentId": {
|
26620
|
-
"type": "string",
|
26621
|
-
"description": "The unique ID of this record, automatically assigned by Lockstep when this record is\r\nadded to the Lockstep platform.\r\n \r\nFor the ID of this record in its originating financial system, see `ErpKey`.",
|
26622
|
-
"format": "uuid",
|
26623
|
-
"nullable": true
|
26624
|
-
},
|
26625
|
-
"companyId": {
|
26626
|
-
"type": "string",
|
26627
|
-
"description": "The ID of the company to which this payment belongs.",
|
26628
|
-
"format": "uuid"
|
26629
|
-
},
|
26630
|
-
"companyErpKey": {
|
26631
|
-
"type": "string",
|
26632
|
-
"description": "The ERP key for the company to which this payment belongs.",
|
26633
|
-
"nullable": true
|
26634
|
-
},
|
26635
|
-
"companyExternalReference": {
|
26636
|
-
"type": "string",
|
26637
|
-
"description": "A additional reference that may be used in the ERP",
|
26638
|
-
"nullable": true
|
26639
|
-
},
|
26640
|
-
"erpKey": {
|
26641
|
-
"type": "string",
|
26642
|
-
"description": "The unique ID of this record as it was known in its originating financial system.\r\n \r\nIf this company record was imported from a financial system, it will have the value `ErpKey`\r\nset to the original primary key number of the record as it was known in the originating financial\r\nsystem. If this record was not imported, this value will be `null`.\r\n \r\nFor more information, see [Identity Columns](https://developer.lockstep.io/docs/identity-columns).",
|
26643
|
-
"nullable": true
|
26644
|
-
},
|
26645
|
-
"paymentType": {
|
26646
|
-
"type": "string",
|
26647
|
-
"description": "The type of payment, AR Payment or AP Payment.\r\n \r\nRecognized PaymentType values are:\r\n* `AR Payment` - A payment made by a Customer to the Company\r\n* `AP Payment` - A payment made by the Company to a Vendor",
|
26648
|
-
"nullable": true
|
26649
|
-
},
|
26650
|
-
"tenderType": {
|
26651
|
-
"type": "string",
|
26652
|
-
"description": "Cash, check, credit card, wire transfer.\r\n \r\nRecognized TenderType values are:\r\n* `Cash` - A cash payment or other direct transfer.\r\n* `Check` - A check payment.\r\n* `Credit Card` - A payment made via a credit card.\r\n* `Wire Transfer` - A payment made via wire transfer from another financial institution.\r\n* `Other` - A payment made via another method not listed above.",
|
26653
|
-
"nullable": true
|
26654
|
-
},
|
26655
|
-
"memoText": {
|
26656
|
-
"maxLength": 50,
|
26657
|
-
"minLength": 0,
|
26658
|
-
"type": "string",
|
26659
|
-
"description": "Memo or reference text (ex. memo field on a check).",
|
26660
|
-
"nullable": true
|
26661
|
-
},
|
26662
|
-
"paymentDate": {
|
26663
|
-
"type": "string",
|
26664
|
-
"description": "The date when this payment was received.",
|
26665
|
-
"format": "date-time",
|
26666
|
-
"nullable": true
|
26667
|
-
},
|
26668
|
-
"postDate": {
|
26669
|
-
"type": "string",
|
26670
|
-
"description": "The date when a payment was posted to a ledger.",
|
26671
|
-
"format": "date-time",
|
26672
|
-
"nullable": true
|
26673
|
-
},
|
26674
|
-
"paymentAmount": {
|
26675
|
-
"type": "number",
|
26676
|
-
"description": "Total amount of this payment in it's received currency.",
|
26677
|
-
"format": "double"
|
26678
|
-
},
|
26679
|
-
"unappliedAmount": {
|
26680
|
-
"type": "number",
|
26681
|
-
"description": "Unapplied balance of this payment in it's received currency. If this amount is nonzero, the field `IsOpen` will be true.",
|
26682
|
-
"format": "double"
|
26683
|
-
},
|
26684
|
-
"currencyCode": {
|
26685
|
-
"type": "string",
|
26686
|
-
"description": "The ISO 4217 currency code for this payment.\r\n \r\nFor a list of ISO 4217 currency codes, see [Query Currencies](https://developer.lockstep.io/reference/get_api-v1-definitions-currencies).",
|
26687
|
-
"nullable": true
|
26688
|
-
},
|
26689
|
-
"referenceCode": {
|
26690
|
-
"type": "string",
|
26691
|
-
"description": "Reference code for the payment for the given Erp system.",
|
26692
|
-
"nullable": true
|
26693
|
-
},
|
26694
|
-
"isVoided": {
|
26695
|
-
"type": "boolean",
|
26696
|
-
"description": "Is the payment voided?"
|
26697
|
-
},
|
26698
|
-
"inDispute": {
|
26699
|
-
"type": "boolean",
|
26700
|
-
"description": "Is the payment in dispute?"
|
26701
|
-
},
|
26702
|
-
"currencyRate": {
|
26703
|
-
"type": "number",
|
26704
|
-
"description": "The Currency Rate used to get from the account's base currency to the payment amount.",
|
26705
|
-
"format": "double"
|
26706
|
-
},
|
26707
|
-
"baseCurrencyPaymentAmount": {
|
26708
|
-
"type": "number",
|
26709
|
-
"description": "Total amount of this payment in the group's base currency.",
|
26710
|
-
"format": "double"
|
26711
|
-
},
|
26712
|
-
"baseCurrencyUnappliedAmount": {
|
26713
|
-
"type": "number",
|
26714
|
-
"description": "Unapplied balance of this payment in the group's base currency. If this amount is nonzero, the field `IsOpen` will be true.",
|
26715
|
-
"format": "double"
|
26716
|
-
},
|
26717
|
-
"bankAccountId": {
|
26718
|
-
"type": "string",
|
26719
|
-
"description": "The Bank account id for the company to which this payment belongs.",
|
26720
|
-
"nullable": true
|
26721
|
-
},
|
26722
|
-
"groupKey": {
|
26723
|
-
"type": "string",
|
26724
|
-
"description": "The GroupKey this request belongs to.",
|
26725
|
-
"format": "uuid"
|
26726
|
-
},
|
26727
|
-
"applications": {
|
26728
|
-
"type": "array",
|
26729
|
-
"items": {
|
26730
|
-
"$ref": "#/components/schemas/InsertPaymentAppliedRequestModel"
|
26731
|
-
},
|
26732
|
-
"description": "All applications this payment is associated with.\r\nTo retrieve this collection, specify `Applications` in the \"Include\" parameter for your query.",
|
26733
|
-
"nullable": true
|
26734
|
-
}
|
26735
|
-
},
|
26736
|
-
"additionalProperties": false,
|
26737
|
-
"description": "A request to insert a new Payment"
|
26738
|
-
},
|
26739
|
-
"InsertPaymentRequestModelErpWriteSyncSubmitModel": {
|
26740
|
-
"required": [
|
26741
|
-
"appEnrollmentId",
|
26742
|
-
"requests"
|
26743
|
-
],
|
26744
|
-
"type": "object",
|
26745
|
-
"properties": {
|
26746
|
-
"appEnrollmentId": {
|
26747
|
-
"minLength": 1,
|
26748
|
-
"type": "string",
|
26749
|
-
"description": "The connected App Enrollment id.",
|
26750
|
-
"format": "uuid"
|
26751
|
-
},
|
26752
|
-
"requests": {
|
26753
|
-
"minItems": 1,
|
26754
|
-
"type": "array",
|
26755
|
-
"items": {
|
26756
|
-
"$ref": "#/components/schemas/InsertPaymentRequestModel"
|
26757
|
-
},
|
26758
|
-
"description": "An array of requests to write back."
|
26759
|
-
}
|
26760
|
-
},
|
26761
|
-
"additionalProperties": false,
|
26762
|
-
"description": "Lockstep.Shared.Models.Sync.ErpWriteSyncSubmitModel`1 represents a request to write back a collection\r\n of requests to the connected AppEnrollment."
|
26763
|
-
},
|
26764
26588
|
"InviteDataModel": {
|
26765
26589
|
"type": "object",
|
26766
26590
|
"properties": {
|
@@ -27114,19 +26938,21 @@
|
|
27114
26938
|
"nullable": true,
|
27115
26939
|
"readOnly": true
|
27116
26940
|
},
|
27117
|
-
"
|
26941
|
+
"erpUpdateStatus": {
|
27118
26942
|
"allOf": [
|
27119
26943
|
{
|
27120
|
-
"$ref": "#/components/schemas/
|
26944
|
+
"$ref": "#/components/schemas/ErpUpdateStatus"
|
27121
26945
|
}
|
27122
26946
|
],
|
27123
|
-
"description": "Possible statuses for a record that supports ERP
|
27124
|
-
"readOnly": true
|
26947
|
+
"description": "Possible statuses for a record that supports ERP Update."
|
27125
26948
|
},
|
27126
|
-
"
|
27127
|
-
"
|
27128
|
-
|
27129
|
-
|
26949
|
+
"erpUpdateAction": {
|
26950
|
+
"allOf": [
|
26951
|
+
{
|
26952
|
+
"$ref": "#/components/schemas/ErpUpdateAction"
|
26953
|
+
}
|
26954
|
+
],
|
26955
|
+
"description": "Possible actions for a record that supports ERP Update.",
|
27130
26956
|
"readOnly": true
|
27131
26957
|
},
|
27132
26958
|
"sourceModifiedDate": {
|
@@ -27506,6 +27332,18 @@
|
|
27506
27332
|
"description": "A code identifying the status of this invoice.\r\n \r\nRecognized Invoice status codes are:\r\n* `Open` - Represents an invoice that is considered open and needs more work to complete\r\n* `Closed` - Represents an invoice that is considered closed and resolved",
|
27507
27333
|
"nullable": true
|
27508
27334
|
},
|
27335
|
+
"workflowStatusId": {
|
27336
|
+
"type": "string",
|
27337
|
+
"description": "The id of the work flow status associated with this invoice.",
|
27338
|
+
"format": "uuid",
|
27339
|
+
"nullable": true
|
27340
|
+
},
|
27341
|
+
"workflowStatusNotes": {
|
27342
|
+
"maxLength": 500,
|
27343
|
+
"type": "string",
|
27344
|
+
"description": "A description of the current workflow status of this invoice.",
|
27345
|
+
"nullable": true
|
27346
|
+
},
|
27509
27347
|
"termsCode": {
|
27510
27348
|
"maxLength": 50,
|
27511
27349
|
"type": "string",
|
@@ -27673,19 +27511,21 @@
|
|
27673
27511
|
"description": "The remaining balance value of this invoice in the group's base currency.",
|
27674
27512
|
"format": "double"
|
27675
27513
|
},
|
27676
|
-
"
|
27514
|
+
"erpUpdateStatus": {
|
27677
27515
|
"allOf": [
|
27678
27516
|
{
|
27679
|
-
"$ref": "#/components/schemas/
|
27517
|
+
"$ref": "#/components/schemas/ErpUpdateStatus"
|
27680
27518
|
}
|
27681
27519
|
],
|
27682
|
-
"description": "Possible statuses for a record that supports ERP
|
27683
|
-
"readOnly": true
|
27520
|
+
"description": "Possible statuses for a record that supports ERP Update."
|
27684
27521
|
},
|
27685
|
-
"
|
27686
|
-
"
|
27687
|
-
|
27688
|
-
|
27522
|
+
"erpUpdateAction": {
|
27523
|
+
"allOf": [
|
27524
|
+
{
|
27525
|
+
"$ref": "#/components/schemas/ErpUpdateAction"
|
27526
|
+
}
|
27527
|
+
],
|
27528
|
+
"description": "Possible actions for a record that supports ERP Update.",
|
27689
27529
|
"readOnly": true
|
27690
27530
|
},
|
27691
27531
|
"sourceModifiedDate": {
|
@@ -27695,6 +27535,14 @@
|
|
27695
27535
|
"nullable": true,
|
27696
27536
|
"readOnly": true
|
27697
27537
|
},
|
27538
|
+
"workflowStatuses": {
|
27539
|
+
"type": "array",
|
27540
|
+
"items": {
|
27541
|
+
"$ref": "#/components/schemas/InvoiceWorkflowStatusHistoryModel"
|
27542
|
+
},
|
27543
|
+
"description": "All workflow status histories connected to this invoice.\r\nTo retrieve this collection, specify `WorkflowStatuses` in the \"Include\" parameter for your query.",
|
27544
|
+
"nullable": true
|
27545
|
+
},
|
27698
27546
|
"addresses": {
|
27699
27547
|
"type": "array",
|
27700
27548
|
"items": {
|
@@ -27794,6 +27642,10 @@
|
|
27794
27642
|
"description": "A collection of custom fields linked to this record. To retrieve this collection, specify\r\n`CustomFieldDefinitions` in the `include` parameter when retrieving data.\r\n \r\nTo create a custom field, use the [Create Custom Field](https://developer.lockstep.io/reference/post_api-v1-customfieldvalues)\r\nendpoint with the `TableKey` to `Invoice` and the `ObjectKey` set to the `InvoiceId` for this record. For\r\nmore information on extensibility, see [linking extensible metadata to objects](https://developer.lockstep.io/docs/custom-fields#linking-metadata-to-an-object).",
|
27795
27643
|
"nullable": true,
|
27796
27644
|
"readOnly": true
|
27645
|
+
},
|
27646
|
+
"isEInvoice": {
|
27647
|
+
"type": "boolean",
|
27648
|
+
"description": "Indicates if the invoice an E-Invoice or not"
|
27797
27649
|
}
|
27798
27650
|
},
|
27799
27651
|
"additionalProperties": false,
|
@@ -28477,11 +28329,67 @@
|
|
28477
28329
|
"description": "The remaining balance value of this invoice in the erp's base currency.",
|
28478
28330
|
"format": "double",
|
28479
28331
|
"nullable": true
|
28332
|
+
},
|
28333
|
+
"isEInvoice": {
|
28334
|
+
"type": "boolean",
|
28335
|
+
"description": "True if the invoice is an E-Invoice",
|
28336
|
+
"nullable": true
|
28337
|
+
},
|
28338
|
+
"sendImmediately": {
|
28339
|
+
"type": "boolean",
|
28340
|
+
"description": "True if the E-Invoice should be sent to gov/other recipients immediately",
|
28341
|
+
"nullable": true
|
28480
28342
|
}
|
28481
28343
|
},
|
28482
28344
|
"additionalProperties": false,
|
28483
28345
|
"description": "The InvoiceSyncModel represents information coming into Lockstep from an external financial system or other\r\nenterprise resource planning system. To import data from an external system, convert your original data into\r\nthe InvoiceSyncModel format and call the [Upload Sync File API](https://developer.lockstep.io/reference/post_api-v1-sync-zip).\r\nThis API retrieves all of the data you uploaded in a compressed ZIP file and imports it into the Lockstep\r\nplatform.\r\n \r\nOnce imported, this record will be available in the Lockstep API as an [InvoiceModel](https://developer.lockstep.io/docs/invoicemodel).\r\n \r\nFor more information on writing your own connector, see [Connector Data](https://developer.lockstep.io/docs/connector-data)."
|
28484
28346
|
},
|
28347
|
+
"InvoiceWorkflowStatusHistoryModel": {
|
28348
|
+
"type": "object",
|
28349
|
+
"properties": {
|
28350
|
+
"invoiceWorkflowStatusHistoryId": {
|
28351
|
+
"type": "string",
|
28352
|
+
"description": "The unique ID of this record, automatically assigned by Lockstep when this record is\r\nadded to the Accounting Data Services platform.",
|
28353
|
+
"format": "uuid",
|
28354
|
+
"readOnly": true
|
28355
|
+
},
|
28356
|
+
"invoiceId": {
|
28357
|
+
"type": "string",
|
28358
|
+
"description": "The invoice ID associated with the invoice workflow status history.",
|
28359
|
+
"format": "uuid"
|
28360
|
+
},
|
28361
|
+
"workflowStatusId": {
|
28362
|
+
"type": "string",
|
28363
|
+
"description": "The workflow status ID associated with the invoice workflow status history.",
|
28364
|
+
"format": "uuid"
|
28365
|
+
},
|
28366
|
+
"groupKey": {
|
28367
|
+
"type": "string",
|
28368
|
+
"description": "The GroupKey uniquely identifies a single Accounting Data Services Platform account. All records for this\r\naccount will share the same GroupKey value. GroupKey values cannot be changed once created.\r\n \r\nFor more information, see [Accounts and GroupKeys](https://developer.lockstep.io/docs/accounts-and-groupkeys).",
|
28369
|
+
"format": "uuid",
|
28370
|
+
"readOnly": true
|
28371
|
+
},
|
28372
|
+
"workflowStatusNotes": {
|
28373
|
+
"type": "string",
|
28374
|
+
"description": "The notes for the invoice workflow status history.",
|
28375
|
+
"nullable": true
|
28376
|
+
},
|
28377
|
+
"created": {
|
28378
|
+
"type": "string",
|
28379
|
+
"description": "The date that the invoice workflow status history was created.",
|
28380
|
+
"format": "date-time",
|
28381
|
+
"readOnly": true
|
28382
|
+
},
|
28383
|
+
"createdUserId": {
|
28384
|
+
"type": "string",
|
28385
|
+
"description": "The ID of the user who created the invoice workflow status history.",
|
28386
|
+
"format": "uuid",
|
28387
|
+
"readOnly": true
|
28388
|
+
}
|
28389
|
+
},
|
28390
|
+
"additionalProperties": false,
|
28391
|
+
"description": "A Invoice Workflow Status History represents prior workflow statuses of an E-Invoice."
|
28392
|
+
},
|
28485
28393
|
"JournalEntryLineModel": {
|
28486
28394
|
"type": "object",
|
28487
28395
|
"properties": {
|
@@ -28579,6 +28487,14 @@
|
|
28579
28487
|
"description": "A memo related to this line.",
|
28580
28488
|
"nullable": true
|
28581
28489
|
},
|
28490
|
+
"dimensions": {
|
28491
|
+
"type": "object",
|
28492
|
+
"additionalProperties": {
|
28493
|
+
"nullable": true
|
28494
|
+
},
|
28495
|
+
"description": "Dimensions for this journal entry line.",
|
28496
|
+
"nullable": true
|
28497
|
+
},
|
28582
28498
|
"created": {
|
28583
28499
|
"type": "string",
|
28584
28500
|
"description": "The date that the journal entry line was created.",
|
@@ -28734,6 +28650,12 @@
|
|
28734
28650
|
"description": "A memo related to this line.",
|
28735
28651
|
"nullable": true
|
28736
28652
|
},
|
28653
|
+
"dimensions": {
|
28654
|
+
"type": "object",
|
28655
|
+
"additionalProperties": { },
|
28656
|
+
"description": "A JSON string representing the dimensions for this journal entry line.",
|
28657
|
+
"nullable": true
|
28658
|
+
},
|
28737
28659
|
"created": {
|
28738
28660
|
"type": "string",
|
28739
28661
|
"description": "If known, the date when this record was created according to the originating financial system\r\nin which this record is maintained. If the originating financial system does not maintain a\r\ncreated-date, leave this field null.",
|
@@ -29643,19 +29565,21 @@
|
|
29643
29565
|
"description": "The unique ID of this record as it was known in its originating financial system.\r\n \r\nIf this company record was imported from a financial system, it will have the value `ErpKey`\r\nset to the original primary key number of the record as it was known in the originating financial\r\nsystem. If this record was not imported, this value will be `null`.\r\n \r\nFor more information, see [Identity Columns](https://developer.lockstep.io/docs/identity-columns).",
|
29644
29566
|
"nullable": true
|
29645
29567
|
},
|
29646
|
-
"
|
29568
|
+
"erpUpdateStatus": {
|
29647
29569
|
"allOf": [
|
29648
29570
|
{
|
29649
|
-
"$ref": "#/components/schemas/
|
29571
|
+
"$ref": "#/components/schemas/ErpUpdateStatus"
|
29650
29572
|
}
|
29651
29573
|
],
|
29652
|
-
"description": "Possible statuses for a record that supports ERP
|
29653
|
-
"readOnly": true
|
29574
|
+
"description": "Possible statuses for a record that supports ERP Update."
|
29654
29575
|
},
|
29655
|
-
"
|
29656
|
-
"
|
29657
|
-
|
29658
|
-
|
29576
|
+
"erpUpdateAction": {
|
29577
|
+
"allOf": [
|
29578
|
+
{
|
29579
|
+
"$ref": "#/components/schemas/ErpUpdateAction"
|
29580
|
+
}
|
29581
|
+
],
|
29582
|
+
"description": "Possible actions for a record that supports ERP Update.",
|
29659
29583
|
"readOnly": true
|
29660
29584
|
},
|
29661
29585
|
"entryNumber": {
|
@@ -30117,19 +30041,21 @@
|
|
30117
30041
|
"description": "The unique ID of this record as it was known in its originating financial system.\r\n \r\nIf this company record was imported from a financial system, it will have the value `ErpKey`\r\nset to the original primary key number of the record as it was known in the originating financial\r\nsystem. If this record was not imported, this value will be `null`.\r\n \r\nFor more information, see [Identity Columns](https://developer.lockstep.io/docs/identity-columns).",
|
30118
30042
|
"nullable": true
|
30119
30043
|
},
|
30120
|
-
"
|
30044
|
+
"erpUpdateStatus": {
|
30121
30045
|
"allOf": [
|
30122
30046
|
{
|
30123
|
-
"$ref": "#/components/schemas/
|
30047
|
+
"$ref": "#/components/schemas/ErpUpdateStatus"
|
30124
30048
|
}
|
30125
30049
|
],
|
30126
|
-
"description": "Possible statuses for a record that supports ERP
|
30127
|
-
"readOnly": true
|
30050
|
+
"description": "Possible statuses for a record that supports ERP Update."
|
30128
30051
|
},
|
30129
|
-
"
|
30130
|
-
"
|
30131
|
-
|
30132
|
-
|
30052
|
+
"erpUpdateAction": {
|
30053
|
+
"allOf": [
|
30054
|
+
{
|
30055
|
+
"$ref": "#/components/schemas/ErpUpdateAction"
|
30056
|
+
}
|
30057
|
+
],
|
30058
|
+
"description": "Possible actions for a record that supports ERP Update.",
|
30133
30059
|
"readOnly": true
|
30134
30060
|
},
|
30135
30061
|
"paymentType": {
|
@@ -30269,8 +30195,7 @@
|
|
30269
30195
|
"$ref": "#/components/schemas/PaymentAppliedModel"
|
30270
30196
|
},
|
30271
30197
|
"description": "All applications this payment is associated with.\r\nTo retrieve this collection, specify `Applications` in the \"Include\" parameter for your query.",
|
30272
|
-
"nullable": true
|
30273
|
-
"readOnly": true
|
30198
|
+
"nullable": true
|
30274
30199
|
},
|
30275
30200
|
"notes": {
|
30276
30201
|
"type": "array",
|
@@ -30312,46 +30237,6 @@
|
|
30312
30237
|
"additionalProperties": false,
|
30313
30238
|
"description": "A Payment represents money sent from one company to another. A single payment may contain payments for\r\none or more invoices; it is also possible for payments to be made in advance of an invoice, for example,\r\nas a deposit. The creator of the Payment is identified by the `CustomerId` field, and the recipient of\r\nthe Payment is identified by the `CompanyId` field. Most Payments are uniquely identified both by a\r\nLockstep Platform ID number and a customer ERP \"key\" that was generated by the system that originated\r\nthe Payment. Payments that have not been fully applied have a nonzero `UnappliedAmount` value, which\r\nrepresents a deposit that has been paid and not yet applied to an Invoice."
|
30314
30239
|
},
|
30315
|
-
"PaymentModelErpWriteResult": {
|
30316
|
-
"type": "object",
|
30317
|
-
"properties": {
|
30318
|
-
"appEnrollmentId": {
|
30319
|
-
"type": "string",
|
30320
|
-
"description": "The id of the connected AppEnrollmentModel",
|
30321
|
-
"format": "uuid"
|
30322
|
-
},
|
30323
|
-
"erpKey": {
|
30324
|
-
"type": "string",
|
30325
|
-
"description": "The ErpKey for the object written to the Erp if created",
|
30326
|
-
"nullable": true
|
30327
|
-
},
|
30328
|
-
"groupKey": {
|
30329
|
-
"type": "string",
|
30330
|
-
"description": "The GroupKey uniquely identifies a single Lockstep Platform account. All records for this\r\naccount will share the same GroupKey value. GroupKey values cannot be changed once created.\r\n \r\nFor more information, see [Accounts and GroupKeys](https://developer.lockstep.io/docs/accounts-and-groupkeys).",
|
30331
|
-
"format": "uuid"
|
30332
|
-
},
|
30333
|
-
"message": {
|
30334
|
-
"type": "string",
|
30335
|
-
"description": "An optional message to return with the result",
|
30336
|
-
"nullable": true
|
30337
|
-
},
|
30338
|
-
"syncRequestId": {
|
30339
|
-
"type": "string",
|
30340
|
-
"description": "The id of the SyncRequestModel the requests were added to",
|
30341
|
-
"format": "uuid"
|
30342
|
-
},
|
30343
|
-
"results": {
|
30344
|
-
"type": "array",
|
30345
|
-
"items": {
|
30346
|
-
"$ref": "#/components/schemas/PaymentModel"
|
30347
|
-
},
|
30348
|
-
"description": "Results from the ERP write operation",
|
30349
|
-
"nullable": true
|
30350
|
-
}
|
30351
|
-
},
|
30352
|
-
"additionalProperties": false,
|
30353
|
-
"description": "Contains results of a write back request"
|
30354
|
-
},
|
30355
30240
|
"PaymentModelFetchResult": {
|
30356
30241
|
"type": "object",
|
30357
30242
|
"properties": {
|
@@ -31260,7 +31145,7 @@
|
|
31260
31145
|
"maxLength": 20,
|
31261
31146
|
"minLength": 0,
|
31262
31147
|
"type": "string",
|
31263
|
-
"description": "The status of processing for this SyncRequest. When a SyncRequest is created, it is flagged as `Ready`.\r\nWhen it is picked up for execution, its status moves to `In Progress`. When it is complete, its status\r\nwill move to `Success` or `Failed`. If another API call cancels the SyncRequest, its status will move\r\nto `Cancelled`.\r\n \r\n* Ready\r\n* In Progress\r\n* Cancelled\r\n* Failed\r\n* Success",
|
31148
|
+
"description": "The status of processing for this SyncRequest. When a SyncRequest is created, it is flagged as `Ready`.\r\nWhile it is in queue waiting to be picked up, its status moves to `Connector`.\r\nWhen it is picked up for execution, its status moves to `In Progress`. When it is complete, its status\r\nwill move to `Success` or `Failed`. If another API call cancels the SyncRequest, its status will move\r\nto `Cancelled`.\r\n \r\n* Ready\r\n* Connector\r\n* In Progress\r\n* Cancelled\r\n* Failed\r\n* Success",
|
31264
31149
|
"nullable": true,
|
31265
31150
|
"readOnly": true
|
31266
31151
|
},
|