netsuite-soap 2025.2.3
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +7 -0
- data/.envrc +9 -0
- data/.github/FUNDING.yml +1 -0
- data/.github/dependabot.yml +14 -0
- data/.github/workflows/codeql-analysis.yml +70 -0
- data/.github/workflows/main.yml +55 -0
- data/.github/workflows/publish.yml +53 -0
- data/.gitignore +23 -0
- data/.rspec +6 -0
- data/.ruby-version +1 -0
- data/.tool-versions +1 -0
- data/AGENTS.md +150 -0
- data/CLAUDE.md +111 -0
- data/DEVELOPMENT.md +34 -0
- data/Gemfile +10 -0
- data/HISTORY.md +171 -0
- data/LICENSE +22 -0
- data/README.md +87 -0
- data/Rakefile +130 -0
- data/docs/async.md +46 -0
- data/docs/configuration.md +88 -0
- data/docs/contributing.md +36 -0
- data/docs/usage.md +149 -0
- data/lib/netsuite/actions/abstract_action.rb +32 -0
- data/lib/netsuite/actions/add.rb +93 -0
- data/lib/netsuite/actions/async_add_list.rb +74 -0
- data/lib/netsuite/actions/async_delete_list.rb +40 -0
- data/lib/netsuite/actions/async_get_list.rb +46 -0
- data/lib/netsuite/actions/async_initialize_list.rb +85 -0
- data/lib/netsuite/actions/async_response.rb +52 -0
- data/lib/netsuite/actions/async_search.rb +36 -0
- data/lib/netsuite/actions/async_update_list.rb +53 -0
- data/lib/netsuite/actions/async_upsert_list.rb +53 -0
- data/lib/netsuite/actions/attach_file.rb +87 -0
- data/lib/netsuite/actions/check_async_status.rb +29 -0
- data/lib/netsuite/actions/delete.rb +102 -0
- data/lib/netsuite/actions/delete_list.rb +108 -0
- data/lib/netsuite/actions/get.rb +87 -0
- data/lib/netsuite/actions/get_all.rb +78 -0
- data/lib/netsuite/actions/get_async_result.rb +35 -0
- data/lib/netsuite/actions/get_deleted.rb +92 -0
- data/lib/netsuite/actions/get_list.rb +98 -0
- data/lib/netsuite/actions/get_select_value.rb +80 -0
- data/lib/netsuite/actions/initialize.rb +86 -0
- data/lib/netsuite/actions/search.rb +265 -0
- data/lib/netsuite/actions/update.rb +86 -0
- data/lib/netsuite/actions/update_list.rb +113 -0
- data/lib/netsuite/actions/upsert.rb +86 -0
- data/lib/netsuite/actions/upsert_list.rb +118 -0
- data/lib/netsuite/client.rb +19 -0
- data/lib/netsuite/configuration.rb +470 -0
- data/lib/netsuite/errors.rb +18 -0
- data/lib/netsuite/namespaces/act_sched.rb +11 -0
- data/lib/netsuite/namespaces/comm_general.rb +11 -0
- data/lib/netsuite/namespaces/file_cabinet.rb +11 -0
- data/lib/netsuite/namespaces/list_acct.rb +11 -0
- data/lib/netsuite/namespaces/list_emp.rb +12 -0
- data/lib/netsuite/namespaces/list_mkt.rb +12 -0
- data/lib/netsuite/namespaces/list_rel.rb +11 -0
- data/lib/netsuite/namespaces/list_support.rb +11 -0
- data/lib/netsuite/namespaces/list_website.rb +11 -0
- data/lib/netsuite/namespaces/platform_common.rb +11 -0
- data/lib/netsuite/namespaces/platform_core.rb +11 -0
- data/lib/netsuite/namespaces/setup_custom.rb +11 -0
- data/lib/netsuite/namespaces/tran_bank.rb +11 -0
- data/lib/netsuite/namespaces/tran_cust.rb +11 -0
- data/lib/netsuite/namespaces/tran_emp.rb +11 -0
- data/lib/netsuite/namespaces/tran_general.rb +11 -0
- data/lib/netsuite/namespaces/tran_invt.rb +11 -0
- data/lib/netsuite/namespaces/tran_purch.rb +11 -0
- data/lib/netsuite/namespaces/tran_sales.rb +11 -0
- data/lib/netsuite/passports/token.rb +55 -0
- data/lib/netsuite/passports/user.rb +25 -0
- data/lib/netsuite/records/account.rb +30 -0
- data/lib/netsuite/records/accounting_period.rb +25 -0
- data/lib/netsuite/records/address.rb +46 -0
- data/lib/netsuite/records/assembly_build.rb +39 -0
- data/lib/netsuite/records/assembly_component.rb +26 -0
- data/lib/netsuite/records/assembly_component_list.rb +12 -0
- data/lib/netsuite/records/assembly_item.rb +66 -0
- data/lib/netsuite/records/assembly_unbuild.rb +37 -0
- data/lib/netsuite/records/base_ref_list.rb +17 -0
- data/lib/netsuite/records/bill_address.rb +17 -0
- data/lib/netsuite/records/billing_schedule.rb +33 -0
- data/lib/netsuite/records/billing_schedule_milestone.rb +28 -0
- data/lib/netsuite/records/billing_schedule_milestone_list.rb +14 -0
- data/lib/netsuite/records/billing_schedule_recurrence.rb +28 -0
- data/lib/netsuite/records/billing_schedule_recurrence_list.rb +14 -0
- data/lib/netsuite/records/bin.rb +30 -0
- data/lib/netsuite/records/bin_number.rb +18 -0
- data/lib/netsuite/records/bin_number_list.rb +11 -0
- data/lib/netsuite/records/bin_transfer.rb +38 -0
- data/lib/netsuite/records/bin_transfer_inventory.rb +20 -0
- data/lib/netsuite/records/bin_transfer_inventory_list.rb +10 -0
- data/lib/netsuite/records/campaign.rb +28 -0
- data/lib/netsuite/records/cash_refund.rb +135 -0
- data/lib/netsuite/records/cash_refund_item.rb +32 -0
- data/lib/netsuite/records/cash_refund_item_list.rb +13 -0
- data/lib/netsuite/records/cash_sale.rb +51 -0
- data/lib/netsuite/records/cash_sale_item.rb +40 -0
- data/lib/netsuite/records/cash_sale_item_list.rb +13 -0
- data/lib/netsuite/records/classification.rb +30 -0
- data/lib/netsuite/records/contact.rb +44 -0
- data/lib/netsuite/records/contact_access_roles.rb +23 -0
- data/lib/netsuite/records/contact_access_roles_list.rb +9 -0
- data/lib/netsuite/records/contact_addressbook.rb +64 -0
- data/lib/netsuite/records/contact_addressbook_list.rb +11 -0
- data/lib/netsuite/records/contact_list.rb +49 -0
- data/lib/netsuite/records/contact_role.rb +23 -0
- data/lib/netsuite/records/cost_category.rb +28 -0
- data/lib/netsuite/records/credit_memo.rb +59 -0
- data/lib/netsuite/records/credit_memo_apply.rb +16 -0
- data/lib/netsuite/records/credit_memo_apply_list.rb +15 -0
- data/lib/netsuite/records/credit_memo_item.rb +34 -0
- data/lib/netsuite/records/credit_memo_item_list.rb +11 -0
- data/lib/netsuite/records/currency.rb +30 -0
- data/lib/netsuite/records/currency_rate.rb +34 -0
- data/lib/netsuite/records/custom_field.rb +23 -0
- data/lib/netsuite/records/custom_field_list.rb +186 -0
- data/lib/netsuite/records/custom_list.rb +27 -0
- data/lib/netsuite/records/custom_list_custom_value.rb +22 -0
- data/lib/netsuite/records/custom_list_custom_value_list.rb +13 -0
- data/lib/netsuite/records/custom_record.rb +56 -0
- data/lib/netsuite/records/custom_record_ref.rb +50 -0
- data/lib/netsuite/records/custom_record_type.rb +30 -0
- data/lib/netsuite/records/customer.rb +265 -0
- data/lib/netsuite/records/customer_addressbook.rb +64 -0
- data/lib/netsuite/records/customer_addressbook_list.rb +11 -0
- data/lib/netsuite/records/customer_category.rb +26 -0
- data/lib/netsuite/records/customer_credit_cards.rb +36 -0
- data/lib/netsuite/records/customer_credit_cards_list.rb +10 -0
- data/lib/netsuite/records/customer_currency.rb +28 -0
- data/lib/netsuite/records/customer_currency_list.rb +9 -0
- data/lib/netsuite/records/customer_deposit.rb +47 -0
- data/lib/netsuite/records/customer_deposit_apply.rb +17 -0
- data/lib/netsuite/records/customer_deposit_apply_list.rb +12 -0
- data/lib/netsuite/records/customer_partner.rb +24 -0
- data/lib/netsuite/records/customer_partners_list.rb +9 -0
- data/lib/netsuite/records/customer_payment.rb +56 -0
- data/lib/netsuite/records/customer_payment_apply.rb +17 -0
- data/lib/netsuite/records/customer_payment_apply_list.rb +12 -0
- data/lib/netsuite/records/customer_payment_credit.rb +17 -0
- data/lib/netsuite/records/customer_payment_credit_list.rb +12 -0
- data/lib/netsuite/records/customer_refund.rb +52 -0
- data/lib/netsuite/records/customer_refund_apply.rb +16 -0
- data/lib/netsuite/records/customer_refund_apply_list.rb +12 -0
- data/lib/netsuite/records/customer_refund_deposit.rb +16 -0
- data/lib/netsuite/records/customer_refund_deposit_list.rb +11 -0
- data/lib/netsuite/records/customer_sales_team.rb +24 -0
- data/lib/netsuite/records/customer_sales_team_list.rb +9 -0
- data/lib/netsuite/records/customer_status.rb +29 -0
- data/lib/netsuite/records/department.rb +27 -0
- data/lib/netsuite/records/deposit.rb +40 -0
- data/lib/netsuite/records/deposit_application.rb +64 -0
- data/lib/netsuite/records/deposit_cash_back.rb +42 -0
- data/lib/netsuite/records/deposit_cash_back_list.rb +9 -0
- data/lib/netsuite/records/deposit_other.rb +35 -0
- data/lib/netsuite/records/deposit_other_list.rb +9 -0
- data/lib/netsuite/records/deposit_payment.rb +48 -0
- data/lib/netsuite/records/deposit_payment_list.rb +14 -0
- data/lib/netsuite/records/description_item.rb +34 -0
- data/lib/netsuite/records/discount_item.rb +37 -0
- data/lib/netsuite/records/duration.rb +15 -0
- data/lib/netsuite/records/employee.rb +42 -0
- data/lib/netsuite/records/entity_custom_field.rb +53 -0
- data/lib/netsuite/records/estimate.rb +122 -0
- data/lib/netsuite/records/estimate_item.rb +47 -0
- data/lib/netsuite/records/estimate_item_list.rb +11 -0
- data/lib/netsuite/records/file.rb +31 -0
- data/lib/netsuite/records/folder.rb +26 -0
- data/lib/netsuite/records/gift_cert_redemption.rb +22 -0
- data/lib/netsuite/records/gift_cert_redemption_list.rb +11 -0
- data/lib/netsuite/records/gift_certificate.rb +30 -0
- data/lib/netsuite/records/gift_certificate_item.rb +84 -0
- data/lib/netsuite/records/inbound_shipment.rb +32 -0
- data/lib/netsuite/records/inbound_shipment_item.rb +39 -0
- data/lib/netsuite/records/inbound_shipment_item_list.rb +11 -0
- data/lib/netsuite/records/inter_company_journal_entry.rb +48 -0
- data/lib/netsuite/records/inter_company_journal_entry_line.rb +28 -0
- data/lib/netsuite/records/inter_company_journal_entry_line_list.rb +12 -0
- data/lib/netsuite/records/inventory_adjustment.rb +30 -0
- data/lib/netsuite/records/inventory_adjustment_inventory.rb +21 -0
- data/lib/netsuite/records/inventory_adjustment_inventory_list.rb +10 -0
- data/lib/netsuite/records/inventory_assignment.rb +24 -0
- data/lib/netsuite/records/inventory_assignment_list.rb +35 -0
- data/lib/netsuite/records/inventory_detail.rb +18 -0
- data/lib/netsuite/records/inventory_item.rb +341 -0
- data/lib/netsuite/records/inventory_number.rb +34 -0
- data/lib/netsuite/records/inventory_number_locations.rb +16 -0
- data/lib/netsuite/records/inventory_number_locations_list.rb +10 -0
- data/lib/netsuite/records/inventory_transfer.rb +30 -0
- data/lib/netsuite/records/inventory_transfer_inventory.rb +21 -0
- data/lib/netsuite/records/inventory_transfer_inventory_list.rb +10 -0
- data/lib/netsuite/records/invoice.rb +167 -0
- data/lib/netsuite/records/invoice_item.rb +46 -0
- data/lib/netsuite/records/invoice_item_list.rb +15 -0
- data/lib/netsuite/records/item_availability.rb +45 -0
- data/lib/netsuite/records/item_fulfillment.rb +62 -0
- data/lib/netsuite/records/item_fulfillment_item.rb +45 -0
- data/lib/netsuite/records/item_fulfillment_item_list.rb +14 -0
- data/lib/netsuite/records/item_fulfillment_package.rb +24 -0
- data/lib/netsuite/records/item_fulfillment_package_fed_ex.rb +28 -0
- data/lib/netsuite/records/item_fulfillment_package_fed_ex_list.rb +32 -0
- data/lib/netsuite/records/item_fulfillment_package_list.rb +37 -0
- data/lib/netsuite/records/item_fulfillment_package_ups.rb +27 -0
- data/lib/netsuite/records/item_fulfillment_package_ups_list.rb +32 -0
- data/lib/netsuite/records/item_fulfillment_package_usps.rb +26 -0
- data/lib/netsuite/records/item_fulfillment_package_usps_list.rb +32 -0
- data/lib/netsuite/records/item_group.rb +37 -0
- data/lib/netsuite/records/item_member.rb +26 -0
- data/lib/netsuite/records/item_member_list.rb +12 -0
- data/lib/netsuite/records/item_option_custom_field.rb +52 -0
- data/lib/netsuite/records/item_receipt.rb +46 -0
- data/lib/netsuite/records/item_receipt_item.rb +43 -0
- data/lib/netsuite/records/item_receipt_item_list.rb +11 -0
- data/lib/netsuite/records/item_vendor.rb +24 -0
- data/lib/netsuite/records/item_vendor_list.rb +11 -0
- data/lib/netsuite/records/job.rb +41 -0
- data/lib/netsuite/records/job_status.rb +25 -0
- data/lib/netsuite/records/journal_entry.rb +48 -0
- data/lib/netsuite/records/journal_entry_line.rb +27 -0
- data/lib/netsuite/records/journal_entry_line_list.rb +12 -0
- data/lib/netsuite/records/kit_item.rb +71 -0
- data/lib/netsuite/records/location.rb +40 -0
- data/lib/netsuite/records/locations_list.rb +15 -0
- data/lib/netsuite/records/lot_numbered_assembly_item.rb +64 -0
- data/lib/netsuite/records/lot_numbered_inventory_item.rb +260 -0
- data/lib/netsuite/records/matrix_option_list.rb +71 -0
- data/lib/netsuite/records/member_list.rb +10 -0
- data/lib/netsuite/records/message.rb +30 -0
- data/lib/netsuite/records/non_inventory_purchase_item.rb +52 -0
- data/lib/netsuite/records/non_inventory_resale_item.rb +189 -0
- data/lib/netsuite/records/non_inventory_sale_item.rb +165 -0
- data/lib/netsuite/records/note.rb +33 -0
- data/lib/netsuite/records/note_type.rb +27 -0
- data/lib/netsuite/records/null_field_list.rb +15 -0
- data/lib/netsuite/records/opportunity.rb +45 -0
- data/lib/netsuite/records/opportunity_item.rb +41 -0
- data/lib/netsuite/records/opportunity_item_list.rb +9 -0
- data/lib/netsuite/records/other_charge_sale_item.rb +73 -0
- data/lib/netsuite/records/partner.rb +35 -0
- data/lib/netsuite/records/payment_item.rb +36 -0
- data/lib/netsuite/records/payment_method.rb +28 -0
- data/lib/netsuite/records/payroll_item.rb +36 -0
- data/lib/netsuite/records/phone_call.rb +29 -0
- data/lib/netsuite/records/price.rb +17 -0
- data/lib/netsuite/records/price_level.rb +26 -0
- data/lib/netsuite/records/price_list.rb +9 -0
- data/lib/netsuite/records/pricing.rb +20 -0
- data/lib/netsuite/records/pricing_matrix.rb +11 -0
- data/lib/netsuite/records/promotion_code.rb +38 -0
- data/lib/netsuite/records/promotions.rb +26 -0
- data/lib/netsuite/records/promotions_list.rb +9 -0
- data/lib/netsuite/records/purchase_order.rb +52 -0
- data/lib/netsuite/records/purchase_order_item.rb +42 -0
- data/lib/netsuite/records/purchase_order_item_list.rb +11 -0
- data/lib/netsuite/records/record_ref.rb +38 -0
- data/lib/netsuite/records/record_ref_list.rb +22 -0
- data/lib/netsuite/records/return_authorization.rb +135 -0
- data/lib/netsuite/records/return_authorization_item.rb +43 -0
- data/lib/netsuite/records/return_authorization_item_list.rb +11 -0
- data/lib/netsuite/records/rev_rec_schedule.rb +32 -0
- data/lib/netsuite/records/rev_rec_template.rb +25 -0
- data/lib/netsuite/records/role_list.rb +24 -0
- data/lib/netsuite/records/roles.rb +17 -0
- data/lib/netsuite/records/sales_order.rb +61 -0
- data/lib/netsuite/records/sales_order_item.rb +49 -0
- data/lib/netsuite/records/sales_order_item_list.rb +11 -0
- data/lib/netsuite/records/sales_order_ship_group_list.rb +11 -0
- data/lib/netsuite/records/sales_role.rb +26 -0
- data/lib/netsuite/records/sales_tax_item.rb +34 -0
- data/lib/netsuite/records/serialized_assembly_item.rb +240 -0
- data/lib/netsuite/records/serialized_inventory_item.rb +248 -0
- data/lib/netsuite/records/serialized_inventory_item_location.rb +36 -0
- data/lib/netsuite/records/serialized_inventory_item_locations_list.rb +10 -0
- data/lib/netsuite/records/serialized_inventory_item_numbers.rb +15 -0
- data/lib/netsuite/records/serialized_inventory_item_numbers_list.rb +10 -0
- data/lib/netsuite/records/service_resale_item.rb +154 -0
- data/lib/netsuite/records/service_sale_item.rb +50 -0
- data/lib/netsuite/records/ship_address.rb +17 -0
- data/lib/netsuite/records/site_category.rb +33 -0
- data/lib/netsuite/records/subscription.rb +18 -0
- data/lib/netsuite/records/subscriptions_list.rb +10 -0
- data/lib/netsuite/records/subsidiary.rb +38 -0
- data/lib/netsuite/records/subtotal_item.rb +34 -0
- data/lib/netsuite/records/support_case.rb +32 -0
- data/lib/netsuite/records/support_case_type.rb +26 -0
- data/lib/netsuite/records/task.rb +31 -0
- data/lib/netsuite/records/tax_group.rb +35 -0
- data/lib/netsuite/records/tax_type.rb +22 -0
- data/lib/netsuite/records/term.rb +27 -0
- data/lib/netsuite/records/time_bill.rb +32 -0
- data/lib/netsuite/records/transaction_body_custom_field.rb +61 -0
- data/lib/netsuite/records/transaction_column_custom_field.rb +59 -0
- data/lib/netsuite/records/transaction_ship_group.rb +40 -0
- data/lib/netsuite/records/transfer_order.rb +45 -0
- data/lib/netsuite/records/transfer_order_item.rb +43 -0
- data/lib/netsuite/records/transfer_order_item_list.rb +11 -0
- data/lib/netsuite/records/translation.rb +17 -0
- data/lib/netsuite/records/translation_list.rb +11 -0
- data/lib/netsuite/records/units_type.rb +25 -0
- data/lib/netsuite/records/units_type_uom.rb +20 -0
- data/lib/netsuite/records/units_type_uom_list.rb +12 -0
- data/lib/netsuite/records/vendor.rb +46 -0
- data/lib/netsuite/records/vendor_bill.rb +53 -0
- data/lib/netsuite/records/vendor_bill_expense.rb +40 -0
- data/lib/netsuite/records/vendor_bill_expense_list.rb +13 -0
- data/lib/netsuite/records/vendor_bill_item.rb +46 -0
- data/lib/netsuite/records/vendor_bill_item_list.rb +12 -0
- data/lib/netsuite/records/vendor_category.rb +26 -0
- data/lib/netsuite/records/vendor_credit.rb +54 -0
- data/lib/netsuite/records/vendor_credit_apply.rb +18 -0
- data/lib/netsuite/records/vendor_credit_apply_list.rb +12 -0
- data/lib/netsuite/records/vendor_credit_expense.rb +31 -0
- data/lib/netsuite/records/vendor_credit_expense_list.rb +12 -0
- data/lib/netsuite/records/vendor_credit_item.rb +34 -0
- data/lib/netsuite/records/vendor_credit_item_list.rb +12 -0
- data/lib/netsuite/records/vendor_currency.rb +26 -0
- data/lib/netsuite/records/vendor_currency_list.rb +9 -0
- data/lib/netsuite/records/vendor_payment.rb +52 -0
- data/lib/netsuite/records/vendor_payment_apply.rb +16 -0
- data/lib/netsuite/records/vendor_payment_apply_list.rb +12 -0
- data/lib/netsuite/records/vendor_return_authorization.rb +30 -0
- data/lib/netsuite/records/vendor_return_authorization_item.rb +23 -0
- data/lib/netsuite/records/vendor_return_authorization_item_list.rb +12 -0
- data/lib/netsuite/records/work_order.rb +45 -0
- data/lib/netsuite/records/work_order_item.rb +30 -0
- data/lib/netsuite/records/work_order_item_list.rb +11 -0
- data/lib/netsuite/response.rb +20 -0
- data/lib/netsuite/rest/utilities/request.rb +62 -0
- data/lib/netsuite/rest/utilities/roles.rb +47 -0
- data/lib/netsuite/support/actions.rb +74 -0
- data/lib/netsuite/support/attributes.rb +22 -0
- data/lib/netsuite/support/country.rb +289 -0
- data/lib/netsuite/support/fields.rb +86 -0
- data/lib/netsuite/support/record_refs.rb +30 -0
- data/lib/netsuite/support/records.rb +89 -0
- data/lib/netsuite/support/requests.rb +56 -0
- data/lib/netsuite/support/search_result.rb +150 -0
- data/lib/netsuite/support/sublist.rb +71 -0
- data/lib/netsuite/utilities/data_center.rb +53 -0
- data/lib/netsuite/utilities/strings.rb +15 -0
- data/lib/netsuite/utilities.rb +324 -0
- data/lib/netsuite/version.rb +3 -0
- data/lib/netsuite.rb +348 -0
- data/netsuite.gemspec +30 -0
- data/spec/integration/soap_http_spec.rb +76 -0
- data/spec/netsuite/actions/add_spec.rb +155 -0
- data/spec/netsuite/actions/async_add_list_spec.rb +123 -0
- data/spec/netsuite/actions/async_delete_list_spec.rb +60 -0
- data/spec/netsuite/actions/async_get_list_spec.rb +78 -0
- data/spec/netsuite/actions/async_initialize_list_spec.rb +106 -0
- data/spec/netsuite/actions/async_lifecycle_spec.rb +51 -0
- data/spec/netsuite/actions/async_response_spec.rb +187 -0
- data/spec/netsuite/actions/async_search_spec.rb +27 -0
- data/spec/netsuite/actions/async_update_list_spec.rb +80 -0
- data/spec/netsuite/actions/async_upsert_list_spec.rb +157 -0
- data/spec/netsuite/actions/attach_file_spec.rb +59 -0
- data/spec/netsuite/actions/check_async_status_spec.rb +29 -0
- data/spec/netsuite/actions/delete_list_spec.rb +86 -0
- data/spec/netsuite/actions/delete_spec.rb +93 -0
- data/spec/netsuite/actions/get_all_spec.rb +100 -0
- data/spec/netsuite/actions/get_async_result_spec.rb +78 -0
- data/spec/netsuite/actions/get_deleted_spec.rb +60 -0
- data/spec/netsuite/actions/get_list_spec.rb +157 -0
- data/spec/netsuite/actions/get_select_value_spec.rb +43 -0
- data/spec/netsuite/actions/get_spec.rb +72 -0
- data/spec/netsuite/actions/initialize_spec.rb +34 -0
- data/spec/netsuite/actions/search_spec.rb +387 -0
- data/spec/netsuite/actions/update_list_spec.rb +107 -0
- data/spec/netsuite/actions/update_spec.rb +133 -0
- data/spec/netsuite/actions/upsert_list_spec.rb +112 -0
- data/spec/netsuite/actions/upsert_spec.rb +117 -0
- data/spec/netsuite/configuration_spec.rb +661 -0
- data/spec/netsuite/records/account_spec.rb +107 -0
- data/spec/netsuite/records/accounting_period_spec.rb +138 -0
- data/spec/netsuite/records/address_spec.rb +139 -0
- data/spec/netsuite/records/assembly_item_spec.rb +64 -0
- data/spec/netsuite/records/basic_record_spec.rb +128 -0
- data/spec/netsuite/records/bill_address_spec.rb +52 -0
- data/spec/netsuite/records/billing_schedule_milestone_list_spec.rb +24 -0
- data/spec/netsuite/records/billing_schedule_milestone_spec.rb +51 -0
- data/spec/netsuite/records/billing_schedule_recurrence_list_spec.rb +24 -0
- data/spec/netsuite/records/billing_schedule_recurrence_spec.rb +49 -0
- data/spec/netsuite/records/billing_schedule_spec.rb +164 -0
- data/spec/netsuite/records/bin_number_spec.rb +23 -0
- data/spec/netsuite/records/campaign_spec.rb +43 -0
- data/spec/netsuite/records/cash_refund_item_list_spec.rb +27 -0
- data/spec/netsuite/records/cash_refund_item_spec.rb +27 -0
- data/spec/netsuite/records/cash_refund_spec.rb +152 -0
- data/spec/netsuite/records/cash_sale_item_list_spec.rb +27 -0
- data/spec/netsuite/records/cash_sale_item_spec.rb +23 -0
- data/spec/netsuite/records/cash_sale_spec.rb +34 -0
- data/spec/netsuite/records/classification_spec.rb +77 -0
- data/spec/netsuite/records/cost_category_spec.rb +105 -0
- data/spec/netsuite/records/credit_memo_apply_list_spec.rb +27 -0
- data/spec/netsuite/records/credit_memo_apply_spec.rb +14 -0
- data/spec/netsuite/records/credit_memo_item_list_spec.rb +26 -0
- data/spec/netsuite/records/credit_memo_item_spec.rb +29 -0
- data/spec/netsuite/records/credit_memo_spec.rb +213 -0
- data/spec/netsuite/records/currency_rate_spec.rb +45 -0
- data/spec/netsuite/records/custom_field_list_spec.rb +276 -0
- data/spec/netsuite/records/custom_list_spec.rb +21 -0
- data/spec/netsuite/records/custom_record_spec.rb +125 -0
- data/spec/netsuite/records/custom_record_type_spec.rb +114 -0
- data/spec/netsuite/records/customer_addressbook_list_spec.rb +41 -0
- data/spec/netsuite/records/customer_addressbook_spec.rb +105 -0
- data/spec/netsuite/records/customer_credit_cards_list_spec.rb +23 -0
- data/spec/netsuite/records/customer_payment_apply_list_spec.rb +25 -0
- data/spec/netsuite/records/customer_payment_credit_list_spec.rb +26 -0
- data/spec/netsuite/records/customer_payment_spec.rb +168 -0
- data/spec/netsuite/records/customer_refund_apply_list_spec.rb +25 -0
- data/spec/netsuite/records/customer_refund_apply_spec.rb +14 -0
- data/spec/netsuite/records/customer_refund_deposit_list_spec.rb +25 -0
- data/spec/netsuite/records/customer_refund_deposit_spec.rb +14 -0
- data/spec/netsuite/records/customer_refund_spec.rb +205 -0
- data/spec/netsuite/records/customer_sales_team_list_spec.rb +41 -0
- data/spec/netsuite/records/customer_spec.rb +561 -0
- data/spec/netsuite/records/department_spec.rb +103 -0
- data/spec/netsuite/records/deposit_spec.rb +165 -0
- data/spec/netsuite/records/discount_item_spec.rb +125 -0
- data/spec/netsuite/records/duration_spec.rb +14 -0
- data/spec/netsuite/records/employee_spec.rb +148 -0
- data/spec/netsuite/records/entity_custom_field_spec.rb +34 -0
- data/spec/netsuite/records/estimate_item_list_spec.rb +26 -0
- data/spec/netsuite/records/estimate_item_spec.rb +35 -0
- data/spec/netsuite/records/estimate_spec.rb +274 -0
- data/spec/netsuite/records/file_spec.rb +11 -0
- data/spec/netsuite/records/folder_spec.rb +33 -0
- data/spec/netsuite/records/gift_cert_redemption_list_spec.rb +26 -0
- data/spec/netsuite/records/gift_cert_redemption_spec.rb +21 -0
- data/spec/netsuite/records/inter_company_journal_entry_line_list_spec.rb +26 -0
- data/spec/netsuite/records/inter_company_journal_entry_line_spec.rb +60 -0
- data/spec/netsuite/records/inter_company_journal_entry_spec.rb +156 -0
- data/spec/netsuite/records/inventory_assignment_list_spec.rb +59 -0
- data/spec/netsuite/records/inventory_assignment_spec.rb +21 -0
- data/spec/netsuite/records/inventory_detail_spec.rb +13 -0
- data/spec/netsuite/records/inventory_item_spec.rb +532 -0
- data/spec/netsuite/records/inventory_transfer_spec.rb +79 -0
- data/spec/netsuite/records/invoice_item_list_spec.rb +24 -0
- data/spec/netsuite/records/invoice_item_spec.rb +79 -0
- data/spec/netsuite/records/invoice_spec.rb +494 -0
- data/spec/netsuite/records/item_availability_spec.rb +59 -0
- data/spec/netsuite/records/item_fulfillment_package_fed_ex_list_spec.rb +27 -0
- data/spec/netsuite/records/item_fulfillment_package_list_spec.rb +27 -0
- data/spec/netsuite/records/item_fulfillment_package_ups_list_spec.rb +27 -0
- data/spec/netsuite/records/item_fulfillment_package_usps_list_spec.rb +27 -0
- data/spec/netsuite/records/item_fulfillment_spec.rb +49 -0
- data/spec/netsuite/records/item_group_spec.rb +117 -0
- data/spec/netsuite/records/item_member_list_spec.rb +26 -0
- data/spec/netsuite/records/item_option_custom_field_spec.rb +27 -0
- data/spec/netsuite/records/item_vendor_list_spec.rb +27 -0
- data/spec/netsuite/records/item_vendor_spec.rb +27 -0
- data/spec/netsuite/records/job_spec.rb +201 -0
- data/spec/netsuite/records/journal_entry_line_list_spec.rb +26 -0
- data/spec/netsuite/records/journal_entry_line_spec.rb +59 -0
- data/spec/netsuite/records/journal_entry_spec.rb +156 -0
- data/spec/netsuite/records/kit_item_spec.rb +117 -0
- data/spec/netsuite/records/location_spec.rb +51 -0
- data/spec/netsuite/records/lot_numbered_inventory_item_spec.rb +247 -0
- data/spec/netsuite/records/matrix_option_list_spec.rb +61 -0
- data/spec/netsuite/records/message_spec.rb +49 -0
- data/spec/netsuite/records/non_inventory_resale_item_spec.rb +300 -0
- data/spec/netsuite/records/non_inventory_sale_item_spec.rb +278 -0
- data/spec/netsuite/records/note_spec.rb +134 -0
- data/spec/netsuite/records/note_type_spec.rb +88 -0
- data/spec/netsuite/records/null_field_list_spec.rb +30 -0
- data/spec/netsuite/records/partner_spec.rb +143 -0
- data/spec/netsuite/records/payment_item_spec.rb +117 -0
- data/spec/netsuite/records/payment_method_spec.rb +49 -0
- data/spec/netsuite/records/phone_call_spec.rb +17 -0
- data/spec/netsuite/records/pomo_code_spec.rb +40 -0
- data/spec/netsuite/records/price_level_spec.rb +16 -0
- data/spec/netsuite/records/pricing_matrix_spec.rb +27 -0
- data/spec/netsuite/records/record_ref_spec.rb +87 -0
- data/spec/netsuite/records/return_authorization_item_list_spec.rb +26 -0
- data/spec/netsuite/records/return_authorization_item_spec.rb +31 -0
- data/spec/netsuite/records/return_authorization_spec.rb +62 -0
- data/spec/netsuite/records/rev_rec_template_spec.rb +39 -0
- data/spec/netsuite/records/sales_order_item_list_spec.rb +26 -0
- data/spec/netsuite/records/sales_order_item_spec.rb +36 -0
- data/spec/netsuite/records/sales_order_spec.rb +250 -0
- data/spec/netsuite/records/sales_tax_item_spec.rb +26 -0
- data/spec/netsuite/records/service_resale_item_spec.rb +239 -0
- data/spec/netsuite/records/service_sale_item_spec.rb +135 -0
- data/spec/netsuite/records/ship_address_spec.rb +36 -0
- data/spec/netsuite/records/site_category_spec.rb +51 -0
- data/spec/netsuite/records/subscription_spec.rb +37 -0
- data/spec/netsuite/records/subscriptions_list_spec.rb +19 -0
- data/spec/netsuite/records/subsidiary_spec.rb +25 -0
- data/spec/netsuite/records/support_case_spec.rb +157 -0
- data/spec/netsuite/records/support_case_type_spec.rb +22 -0
- data/spec/netsuite/records/tax_type_spec.rb +11 -0
- data/spec/netsuite/records/term_spec.rb +96 -0
- data/spec/netsuite/records/transaction_body_custom_field_spec.rb +32 -0
- data/spec/netsuite/records/transaction_column_custom_field_spec.rb +32 -0
- data/spec/netsuite/records/translation_list_spec.rb +34 -0
- data/spec/netsuite/records/translation_spec.rb +28 -0
- data/spec/netsuite/records/units_type_spec.rb +33 -0
- data/spec/netsuite/records/units_type_uom_list_spec.rb +23 -0
- data/spec/netsuite/records/units_type_uom_spec.rb +14 -0
- data/spec/netsuite/records/vendor_bill_expense_list_spec.rb +36 -0
- data/spec/netsuite/records/vendor_bill_expense_spec.rb +72 -0
- data/spec/netsuite/records/vendor_bill_item_list_spec.rb +36 -0
- data/spec/netsuite/records/vendor_bill_item_spec.rb +118 -0
- data/spec/netsuite/records/vendor_bill_spec.rb +187 -0
- data/spec/netsuite/records/vendor_credit_spec.rb +29 -0
- data/spec/netsuite/records/vendor_payment_apply_list_spec.rb +25 -0
- data/spec/netsuite/records/vendor_payment_apply_spec.rb +15 -0
- data/spec/netsuite/records/vendor_payment_spec.rb +164 -0
- data/spec/netsuite/records/vendor_spec.rb +145 -0
- data/spec/netsuite/records/work_order_item_list_spec.rb +26 -0
- data/spec/netsuite/records/work_order_item_spec.rb +45 -0
- data/spec/netsuite/records/work_order_spec.rb +92 -0
- data/spec/netsuite/response_spec.rb +34 -0
- data/spec/netsuite/support/fields_spec.rb +107 -0
- data/spec/netsuite/support/record_refs_spec.rb +14 -0
- data/spec/netsuite/support/records_spec.rb +60 -0
- data/spec/netsuite/support/refresh_spec.rb +28 -0
- data/spec/netsuite/support/requests_spec.rb +38 -0
- data/spec/netsuite/support/search_result_spec.rb +53 -0
- data/spec/netsuite/support/sublist_spec.rb +42 -0
- data/spec/netsuite/utilities/data_center_spec.rb +110 -0
- data/spec/netsuite/utilities/request_spec.rb +29 -0
- data/spec/netsuite/utilities/roles_spec.rb +145 -0
- data/spec/netsuite/utilities_spec.rb +140 -0
- data/spec/netsuite_spec.rb +41 -0
- data/spec/spec_helper.rb +50 -0
- data/spec/support/configuration.rb +23 -0
- data/spec/support/field_matcher.rb +21 -0
- data/spec/support/fixtures/add/add_customer.xml +16 -0
- data/spec/support/fixtures/add/add_file.xml +20 -0
- data/spec/support/fixtures/add/add_invoice.xml +20 -0
- data/spec/support/fixtures/add/add_invoice_error.xml +19 -0
- data/spec/support/fixtures/add/add_invoice_multiple_errors.xml +24 -0
- data/spec/support/fixtures/async_add_list/async_add_list_pending.xml +18 -0
- data/spec/support/fixtures/async_delete_list/async_delete_list_pending.xml +18 -0
- data/spec/support/fixtures/async_get_list/async_get_list_pending.xml +18 -0
- data/spec/support/fixtures/async_initialize_list/async_initialize_list_pending.xml +18 -0
- data/spec/support/fixtures/async_search/async_search_pending.xml +18 -0
- data/spec/support/fixtures/async_update_list/async_update_list_pending.xml +18 -0
- data/spec/support/fixtures/async_upsert_list/async_upsert_list_customers.xml +16 -0
- data/spec/support/fixtures/async_upsert_list/async_upsert_list_one_customer.xml +16 -0
- data/spec/support/fixtures/async_upsert_list/async_upsert_list_with_errors.xml +21 -0
- data/spec/support/fixtures/attach/attach_file_to_sales_order.xml +16 -0
- data/spec/support/fixtures/attach/attach_file_to_sales_order_error.xml +20 -0
- data/spec/support/fixtures/check_async_status/check_async_status_pending.xml +18 -0
- data/spec/support/fixtures/custom_fields/multi_select.xml +47 -0
- data/spec/support/fixtures/delete/delete_customer.xml +16 -0
- data/spec/support/fixtures/delete/delete_customer_error.xml +21 -0
- data/spec/support/fixtures/delete/delete_customer_multiple_errors.xml +25 -0
- data/spec/support/fixtures/delete_list/delete_list_customers.xml +26 -0
- data/spec/support/fixtures/delete_list/delete_list_customers_with_errors.xml +31 -0
- data/spec/support/fixtures/get/get_customer.xml +61 -0
- data/spec/support/fixtures/get/get_invoice.xml +101 -0
- data/spec/support/fixtures/get_all/get_all_currencies.xml +24 -0
- data/spec/support/fixtures/get_all/get_all_error.xml +15 -0
- data/spec/support/fixtures/get_async_result/get_async_result_finished.xml +22 -0
- data/spec/support/fixtures/get_async_result/get_async_result_upsert_list_finished.xml +26 -0
- data/spec/support/fixtures/get_async_result/get_async_result_write_list_multiple.xml +34 -0
- data/spec/support/fixtures/get_deleted/get_deleted_invoices.xml +38 -0
- data/spec/support/fixtures/get_item_availability/get_item_availability.xml +46 -0
- data/spec/support/fixtures/get_list/get_list_customer_error.xml +22 -0
- data/spec/support/fixtures/get_list/get_list_customers.xml +21 -0
- data/spec/support/fixtures/get_list/get_list_customers_multiple.xml +28 -0
- data/spec/support/fixtures/get_select_value/empty_result.xml +22 -0
- data/spec/support/fixtures/get_select_value/item_fulfillment_ship_method.xml +43 -0
- data/spec/support/fixtures/initialize/initialize_invoice_from_customer.xml +69 -0
- data/spec/support/fixtures/login/failure_concurrent_requests.xml +15 -0
- data/spec/support/fixtures/login/failure_invalid_credentials.xml +15 -0
- data/spec/support/fixtures/login/success.xml +35 -0
- data/spec/support/fixtures/search/basic_search_contact.xml +39 -0
- data/spec/support/fixtures/search/saved_search_customer.xml +54 -0
- data/spec/support/fixtures/search/saved_search_item.xml +55 -0
- data/spec/support/fixtures/search/saved_search_joined_custom_customer.xml +101 -0
- data/spec/support/fixtures/search/single_search_result.xml +46 -0
- data/spec/support/fixtures/soap/v2025_2_0/wsdl/netsuite.wsdl +2531 -0
- data/spec/support/fixtures/soap/v2025_2_0/xsd/activities/scheduling.xsd +603 -0
- data/spec/support/fixtures/soap/v2025_2_0/xsd/activities/schedulingTypes.xsd +198 -0
- data/spec/support/fixtures/soap/v2025_2_0/xsd/documents/fileCabinet.xsd +159 -0
- data/spec/support/fixtures/soap/v2025_2_0/xsd/documents/fileCabinetTypes.xsd +110 -0
- data/spec/support/fixtures/soap/v2025_2_0/xsd/general/communication.xsd +210 -0
- data/spec/support/fixtures/soap/v2025_2_0/xsd/general/communicationTypes.xsd +20 -0
- data/spec/support/fixtures/soap/v2025_2_0/xsd/lists/accounting.xsd +6768 -0
- data/spec/support/fixtures/soap/v2025_2_0/xsd/lists/accountingTypes.xsd +1043 -0
- data/spec/support/fixtures/soap/v2025_2_0/xsd/lists/employeeTypes.xsd +344 -0
- data/spec/support/fixtures/soap/v2025_2_0/xsd/lists/employees.xsd +518 -0
- data/spec/support/fixtures/soap/v2025_2_0/xsd/lists/marketing.xsd +528 -0
- data/spec/support/fixtures/soap/v2025_2_0/xsd/lists/marketingTypes.xsd +145 -0
- data/spec/support/fixtures/soap/v2025_2_0/xsd/lists/relationshipTypes.xsd +190 -0
- data/spec/support/fixtures/soap/v2025_2_0/xsd/lists/relationships.xsd +1658 -0
- data/spec/support/fixtures/soap/v2025_2_0/xsd/lists/supplyChain.xsd +282 -0
- data/spec/support/fixtures/soap/v2025_2_0/xsd/lists/supplyChainTypes.xsd +26 -0
- data/spec/support/fixtures/soap/v2025_2_0/xsd/lists/support.xsd +534 -0
- data/spec/support/fixtures/soap/v2025_2_0/xsd/lists/supportTypes.xsd +74 -0
- data/spec/support/fixtures/soap/v2025_2_0/xsd/lists/website.xsd +99 -0
- data/spec/support/fixtures/soap/v2025_2_0/xsd/lists/websiteTypes.xsd +2 -0
- data/spec/support/fixtures/soap/v2025_2_0/xsd/platform/common.xsd +8411 -0
- data/spec/support/fixtures/soap/v2025_2_0/xsd/platform/commonTypes.xsd +1371 -0
- data/spec/support/fixtures/soap/v2025_2_0/xsd/platform/core.xsd +1096 -0
- data/spec/support/fixtures/soap/v2025_2_0/xsd/platform/coreTypes.xsd +877 -0
- data/spec/support/fixtures/soap/v2025_2_0/xsd/platform/faultTypes.xsd +1446 -0
- data/spec/support/fixtures/soap/v2025_2_0/xsd/platform/faults.xsd +82 -0
- data/spec/support/fixtures/soap/v2025_2_0/xsd/platform/messages.xsd +664 -0
- data/spec/support/fixtures/soap/v2025_2_0/xsd/setup/customization.xsd +1604 -0
- data/spec/support/fixtures/soap/v2025_2_0/xsd/setup/customizationTypes.xsd +119 -0
- data/spec/support/fixtures/soap/v2025_2_0/xsd/transactions/bank.xsd +212 -0
- data/spec/support/fixtures/soap/v2025_2_0/xsd/transactions/bankTypes.xsd +2 -0
- data/spec/support/fixtures/soap/v2025_2_0/xsd/transactions/customerTypes.xsd +99 -0
- data/spec/support/fixtures/soap/v2025_2_0/xsd/transactions/customers.xsd +1131 -0
- data/spec/support/fixtures/soap/v2025_2_0/xsd/transactions/demandPlanning.xsd +173 -0
- data/spec/support/fixtures/soap/v2025_2_0/xsd/transactions/demandPlanningTypes.xsd +52 -0
- data/spec/support/fixtures/soap/v2025_2_0/xsd/transactions/employeeTypes.xsd +10 -0
- data/spec/support/fixtures/soap/v2025_2_0/xsd/transactions/employees.xsd +723 -0
- data/spec/support/fixtures/soap/v2025_2_0/xsd/transactions/financial.xsd +88 -0
- data/spec/support/fixtures/soap/v2025_2_0/xsd/transactions/financialTypes.xsd +9 -0
- data/spec/support/fixtures/soap/v2025_2_0/xsd/transactions/general.xsd +364 -0
- data/spec/support/fixtures/soap/v2025_2_0/xsd/transactions/inventory.xsd +780 -0
- data/spec/support/fixtures/soap/v2025_2_0/xsd/transactions/inventoryTypes.xsd +49 -0
- data/spec/support/fixtures/soap/v2025_2_0/xsd/transactions/purchaseTypes.xsd +44 -0
- data/spec/support/fixtures/soap/v2025_2_0/xsd/transactions/purchases.xsd +986 -0
- data/spec/support/fixtures/soap/v2025_2_0/xsd/transactions/saleTypes.xsd +754 -0
- data/spec/support/fixtures/soap/v2025_2_0/xsd/transactions/sales.xsd +2025 -0
- data/spec/support/fixtures/update/update_customer.xml +16 -0
- data/spec/support/fixtures/update/update_customer_error.xml +21 -0
- data/spec/support/fixtures/update/update_customer_multiple_errors.xml +25 -0
- data/spec/support/fixtures/update/update_invoice.xml +16 -0
- data/spec/support/fixtures/update_list/update_list_items.xml +22 -0
- data/spec/support/fixtures/update_list/update_list_one_item.xml +18 -0
- data/spec/support/fixtures/update_list/update_list_with_errors.xml +32 -0
- data/spec/support/fixtures/upsert/upsert_customer.xml +16 -0
- data/spec/support/fixtures/upsert/upsert_invoice.xml +16 -0
- data/spec/support/fixtures/upsert/upsert_invoice_error.xml +20 -0
- data/spec/support/fixtures/upsert/upsert_invoice_multiple_errors.xml +24 -0
- data/spec/support/fixtures/upsert_list/upsert_list_customers.xml +21 -0
- data/spec/support/fixtures/upsert_list/upsert_list_one_customer.xml +17 -0
- data/spec/support/fixtures/upsert_list/upsert_list_with_errors.xml +32 -0
- data/spec/support/read_only_field_matcher.rb +7 -0
- data/spec/support/record_ref_matcher.rb +25 -0
- data/spec/support/savon.rb +5 -0
- data/spec/support/search_only_field_matcher.rb +7 -0
- data/spec/support/webmock_soap_helper.rb +15 -0
- data/workflow.md +368 -0
- metadata +764 -0
|
@@ -0,0 +1,61 @@
|
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8"?>
|
|
2
|
+
<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
|
|
3
|
+
<soapenv:Header>
|
|
4
|
+
<platformMsgs:documentInfo xmlns:platformMsgs="urn:messages_2011_2.platform.webservices.netsuite.com">
|
|
5
|
+
<platformMsgs:nsId>WEBSERVICES_3392464_1220201115821392011296470399_67055c545d0</platformMsgs:nsId>
|
|
6
|
+
</platformMsgs:documentInfo>
|
|
7
|
+
</soapenv:Header>
|
|
8
|
+
<soapenv:Body>
|
|
9
|
+
<getResponse xmlns="urn:messages_2011_2.platform.webservices.netsuite.com">
|
|
10
|
+
<readResponse>
|
|
11
|
+
<platformCore:status isSuccess="true" xmlns:platformCore="urn:core_2011_2.platform.webservices.netsuite.com"/>
|
|
12
|
+
<record internalId="988" externalId="100157" xsi:type="listRel:Customer" xmlns:listRel="urn:relationships_2011_2.lists.webservices.netsuite.com">
|
|
13
|
+
<listRel:entityId>100157</listRel:entityId>
|
|
14
|
+
<listRel:altName>My Customer</listRel:altName>
|
|
15
|
+
<listRel:isPerson>false</listRel:isPerson>
|
|
16
|
+
<listRel:companyName>Test Inc.</listRel:companyName>
|
|
17
|
+
<listRel:entityStatus internalId="13" xmlns:platformCore="urn:core_2011_2.platform.webservices.netsuite.com">
|
|
18
|
+
<platformCore:name>CUSTOMER-Closed Won</platformCore:name>
|
|
19
|
+
</listRel:entityStatus>
|
|
20
|
+
<listRel:defaultAddress>123 Happy Lane, #4\nChicago IL 60616</listRel:defaultAddress>
|
|
21
|
+
<listRel:isInactive>false</listRel:isInactive>
|
|
22
|
+
<listRel:dateCreated>2011-12-15T11:56:19.000-08:00</listRel:dateCreated>
|
|
23
|
+
<listRel:emailPreference>_default</listRel:emailPreference>
|
|
24
|
+
<listRel:creditHoldOverride>_auto</listRel:creditHoldOverride>
|
|
25
|
+
<listRel:balance>100.0</listRel:balance>
|
|
26
|
+
<listRel:overdueBalance>25.0</listRel:overdueBalance>
|
|
27
|
+
<listRel:daysOverdue>93</listRel:daysOverdue>
|
|
28
|
+
<listRel:unbilledOrders>0.0</listRel:unbilledOrders>
|
|
29
|
+
<listRel:consolUnbilledOrders>0.0</listRel:consolUnbilledOrders>
|
|
30
|
+
<listRel:consolOverdueBalance>25.0</listRel:consolOverdueBalance>
|
|
31
|
+
<listRel:consolDepositBalance>0.0</listRel:consolDepositBalance>
|
|
32
|
+
<listRel:consolBalance>100.0</listRel:consolBalance>
|
|
33
|
+
<listRel:consolDaysOverdue>93</listRel:consolDaysOverdue>
|
|
34
|
+
<listRel:depositBalance>0.0</listRel:depositBalance>
|
|
35
|
+
<listRel:shipComplete>false</listRel:shipComplete>
|
|
36
|
+
<listRel:taxable>false</listRel:taxable>
|
|
37
|
+
<listRel:webLead>No</listRel:webLead>
|
|
38
|
+
<listRel:lastModifiedDate>2011-12-15T11:56:19.000-08:00</listRel:lastModifiedDate>
|
|
39
|
+
<listRel:stage>_customer</listRel:stage>
|
|
40
|
+
<listRel:isBudgetApproved>false</listRel:isBudgetApproved>
|
|
41
|
+
<listRel:addressbookList>
|
|
42
|
+
<listRel:addressbook>
|
|
43
|
+
<listRel:defaultShipping>true</listRel:defaultShipping>
|
|
44
|
+
<listRel:defaultBilling>true</listRel:defaultBilling>
|
|
45
|
+
<listRel:isResidential>false</listRel:isResidential>
|
|
46
|
+
<listRel:label>123 Happy Lane, #4</listRel:label>
|
|
47
|
+
<listRel:addr1>123 Happy Lane, #4</listRel:addr1>
|
|
48
|
+
<listRel:city>Chicago</listRel:city>
|
|
49
|
+
<listRel:zip>60616</listRel:zip>
|
|
50
|
+
<listRel:country>_unitedStates</listRel:country>
|
|
51
|
+
<listRel:addrText>123 Happy Lane, #4\nChicago IL 60616</listRel:addrText>
|
|
52
|
+
<listRel:override>false</listRel:override>
|
|
53
|
+
<listRel:internalId>567</listRel:internalId>
|
|
54
|
+
<listRel:state>IL</listRel:state>
|
|
55
|
+
</listRel:addressbook>
|
|
56
|
+
</listRel:addressbookList>
|
|
57
|
+
</record>
|
|
58
|
+
</readResponse>
|
|
59
|
+
</getResponse>
|
|
60
|
+
</soapenv:Body>
|
|
61
|
+
</soapenv:Envelope>
|
|
@@ -0,0 +1,101 @@
|
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8"?>
|
|
2
|
+
<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
|
|
3
|
+
<soapenv:Header>
|
|
4
|
+
<platformMsgs:documentInfo xmlns:platformMsgs="urn:messages_2011_2.platform.webservices.netsuite.com">
|
|
5
|
+
<platformMsgs:nsId>WEBSERVICES_3392464_0106201212487807681436565242_d5396bca4f5</platformMsgs:nsId>
|
|
6
|
+
</platformMsgs:documentInfo>
|
|
7
|
+
</soapenv:Header>
|
|
8
|
+
<soapenv:Body>
|
|
9
|
+
<getResponse xmlns="urn:messages_2011_2.platform.webservices.netsuite.com">
|
|
10
|
+
<readResponse>
|
|
11
|
+
<platformCore:status isSuccess="true" xmlns:platformCore="urn:core_2011_2.platform.webservices.netsuite.com"/>
|
|
12
|
+
<record internalId="439" externalId="2187" xsi:type="tranSales:Invoice" xmlns:tranSales="urn:sales_2011_2.transactions.webservices.netsuite.com">
|
|
13
|
+
<tranSales:createdDate>2011-12-15T16:54:12.000-08:00</tranSales:createdDate>
|
|
14
|
+
<tranSales:lastModifiedDate>2011-12-16T13:37:57.000-08:00</tranSales:lastModifiedDate>
|
|
15
|
+
<tranSales:customForm internalId="101" xmlns:platformCore="urn:core_2011_2.platform.webservices.netsuite.com">
|
|
16
|
+
<platformCore:name>RP Test Product Invoice</platformCore:name>
|
|
17
|
+
</tranSales:customForm>
|
|
18
|
+
<tranSales:entity internalId="854" xmlns:platformCore="urn:core_2011_2.platform.webservices.netsuite.com">
|
|
19
|
+
<platformCore:name>100023 Office</platformCore:name>
|
|
20
|
+
</tranSales:entity>
|
|
21
|
+
<tranSales:tranDate>2011-01-01T00:00:00.000-08:00</tranSales:tranDate>
|
|
22
|
+
<tranSales:tranId>2187</tranSales:tranId>
|
|
23
|
+
<tranSales:source>CSV</tranSales:source>
|
|
24
|
+
<tranSales:postingPeriod internalId="17" xmlns:platformCore="urn:core_2011_2.platform.webservices.netsuite.com">
|
|
25
|
+
<platformCore:name>Dec 2011</platformCore:name>
|
|
26
|
+
</tranSales:postingPeriod>
|
|
27
|
+
<tranSales:class internalId="1" xmlns:platformCore="urn:core_2011_2.platform.webservices.netsuite.com">
|
|
28
|
+
<platformCore:name>Retail</platformCore:name>
|
|
29
|
+
</tranSales:class>
|
|
30
|
+
<tranSales:dueDate>2011-01-01T00:00:00.000-08:00</tranSales:dueDate>
|
|
31
|
+
<tranSales:salesEffectiveDate>2011-01-01T00:00:00.000-08:00</tranSales:salesEffectiveDate>
|
|
32
|
+
<tranSales:excludeCommission>false</tranSales:excludeCommission>
|
|
33
|
+
<tranSales:amountPaid>0.0</tranSales:amountPaid>
|
|
34
|
+
<tranSales:amountRemaining>15993.6</tranSales:amountRemaining>
|
|
35
|
+
<tranSales:account internalId="123" xmlns:platformCore="urn:core_2011_2.platform.webservices.netsuite.com">
|
|
36
|
+
<platformCore:name>1100 Accounts Receivable</platformCore:name>
|
|
37
|
+
</tranSales:account>
|
|
38
|
+
<tranSales:toBePrinted>false</tranSales:toBePrinted>
|
|
39
|
+
<tranSales:toBeEmailed>false</tranSales:toBeEmailed>
|
|
40
|
+
<tranSales:toBeFaxed>false</tranSales:toBeFaxed>
|
|
41
|
+
<tranSales:transactionBillAddress xmlns:platformCommon="urn:common_2011_2.platform.webservices.netsuite.com">
|
|
42
|
+
<platformCommon:billAddr1>123 Happy Lane</platformCommon:billAddr1>
|
|
43
|
+
<platformCommon:billAddr2>Attn: Accounts Payable</platformCommon:billAddr2>
|
|
44
|
+
<platformCommon:billCity>Los Angeles</platformCommon:billCity>
|
|
45
|
+
<platformCommon:billState>CA</platformCommon:billState>
|
|
46
|
+
<platformCommon:billZip>90007</platformCommon:billZip>
|
|
47
|
+
<platformCommon:billCountry>_unitedStates</platformCommon:billCountry>
|
|
48
|
+
</tranSales:transactionBillAddress>
|
|
49
|
+
<tranSales:billAddressList internalId="433" xmlns:platformCore="urn:core_2011_2.platform.webservices.netsuite.com">
|
|
50
|
+
<platformCore:name>123 Happy Lane</platformCore:name>
|
|
51
|
+
</tranSales:billAddressList>
|
|
52
|
+
<tranSales:billAddress>123 Happy Lane Attn: Accounts Payable Los Angeles CA 90007</tranSales:billAddress>
|
|
53
|
+
<tranSales:transactionShipAddress xmlns:platformCommon="urn:common_2011_2.platform.webservices.netsuite.com">
|
|
54
|
+
<platformCommon:shipAddr1>123 Happy Lane</platformCommon:shipAddr1>
|
|
55
|
+
<platformCommon:shipAddr2>Attn: Accounts Payable</platformCommon:shipAddr2>
|
|
56
|
+
<platformCommon:shipCity>Los Angeles</platformCommon:shipCity>
|
|
57
|
+
<platformCommon:shipState>CA</platformCommon:shipState>
|
|
58
|
+
<platformCommon:shipZip>90007</platformCommon:shipZip>
|
|
59
|
+
<platformCommon:shipCountry>_unitedStates</platformCommon:shipCountry>
|
|
60
|
+
<platformCommon:shipIsResidential>false</platformCommon:shipIsResidential>
|
|
61
|
+
</tranSales:transactionShipAddress>
|
|
62
|
+
<tranSales:shipAddressList internalId="433" xmlns:platformCore="urn:core_2011_2.platform.webservices.netsuite.com">
|
|
63
|
+
<platformCore:name>123 Happy Lane</platformCore:name>
|
|
64
|
+
</tranSales:shipAddressList>
|
|
65
|
+
<tranSales:shipAddress>123 Happy Lane Attn: Accounts Payable Los Angeles CA 90007</tranSales:shipAddress>
|
|
66
|
+
<tranSales:shipDate>2011-12-15T00:00:00.000-08:00</tranSales:shipDate>
|
|
67
|
+
<tranSales:subTotal>15993.6</tranSales:subTotal>
|
|
68
|
+
<tranSales:revenueStatus>_completed</tranSales:revenueStatus>
|
|
69
|
+
<tranSales:syncSalesTeams>false</tranSales:syncSalesTeams>
|
|
70
|
+
<tranSales:discountTotal>0.0</tranSales:discountTotal>
|
|
71
|
+
<tranSales:taxTotal>0.0</tranSales:taxTotal>
|
|
72
|
+
<tranSales:total>15993.6</tranSales:total>
|
|
73
|
+
<tranSales:status>Open</tranSales:status>
|
|
74
|
+
<tranSales:itemCostDiscPrint>false</tranSales:itemCostDiscPrint>
|
|
75
|
+
<tranSales:expCostDiscPrint>false</tranSales:expCostDiscPrint>
|
|
76
|
+
<tranSales:itemList>
|
|
77
|
+
<tranSales:item>
|
|
78
|
+
<tranSales:item internalId="217" xmlns:platformCore="urn:core_2011_2.platform.webservices.netsuite.com">
|
|
79
|
+
<platformCore:name>Dummy Item For Import</platformCore:name>
|
|
80
|
+
</tranSales:item>
|
|
81
|
+
<tranSales:line>1</tranSales:line>
|
|
82
|
+
<tranSales:amount>15993.6</tranSales:amount>
|
|
83
|
+
<tranSales:quantity>1.0</tranSales:quantity>
|
|
84
|
+
<tranSales:price internalId="-1" xmlns:platformCore="urn:core_2011_2.platform.webservices.netsuite.com">
|
|
85
|
+
<platformCore:name>&nbsp;</platformCore:name>
|
|
86
|
+
</tranSales:price>
|
|
87
|
+
<tranSales:taxCode internalId="-8" xmlns:platformCore="urn:core_2011_2.platform.webservices.netsuite.com">
|
|
88
|
+
<platformCore:name>-Not Taxable-</platformCore:name>
|
|
89
|
+
</tranSales:taxCode>
|
|
90
|
+
</tranSales:item>
|
|
91
|
+
</tranSales:itemList>
|
|
92
|
+
<tranSales:customFieldList xmlns:platformCore="urn:core_2011_2.platform.webservices.netsuite.com">
|
|
93
|
+
<platformCore:customField internalId="custbody_3rd_party" xsi:type="platformCore:BooleanCustomFieldRef">
|
|
94
|
+
<platformCore:value>false</platformCore:value>
|
|
95
|
+
</platformCore:customField>
|
|
96
|
+
</tranSales:customFieldList>
|
|
97
|
+
</record>
|
|
98
|
+
</readResponse>
|
|
99
|
+
</getResponse>
|
|
100
|
+
</soapenv:Body>
|
|
101
|
+
</soapenv:Envelope>
|
|
@@ -0,0 +1,24 @@
|
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8"?>
|
|
2
|
+
<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
|
|
3
|
+
<soapenv:Body>
|
|
4
|
+
<getAllResponse xmlns="urn:messages_2025_2.platform.webservices.netsuite.com">
|
|
5
|
+
<getAllResult>
|
|
6
|
+
<platformCore:status isSuccess="true" xmlns:platformCore="urn:core_2025_2.platform.webservices.netsuite.com"/>
|
|
7
|
+
<platformCore:recordList xmlns:platformCore="urn:core_2025_2.platform.webservices.netsuite.com">
|
|
8
|
+
<platformCore:record internalId="1" xsi:type="listAcct:Currency" xmlns:listAcct="urn:accounting_2025_2.lists.webservices.netsuite.com">
|
|
9
|
+
<listAcct:name>US Dollar</listAcct:name>
|
|
10
|
+
<listAcct:symbol>USD</listAcct:symbol>
|
|
11
|
+
<listAcct:isBaseCurrency>true</listAcct:isBaseCurrency>
|
|
12
|
+
<listAcct:isInactive>false</listAcct:isInactive>
|
|
13
|
+
</platformCore:record>
|
|
14
|
+
<platformCore:record internalId="2" xsi:type="listAcct:Currency" xmlns:listAcct="urn:accounting_2025_2.lists.webservices.netsuite.com">
|
|
15
|
+
<listAcct:name>Euro</listAcct:name>
|
|
16
|
+
<listAcct:symbol>EUR</listAcct:symbol>
|
|
17
|
+
<listAcct:isBaseCurrency>false</listAcct:isBaseCurrency>
|
|
18
|
+
<listAcct:isInactive>false</listAcct:isInactive>
|
|
19
|
+
</platformCore:record>
|
|
20
|
+
</platformCore:recordList>
|
|
21
|
+
</getAllResult>
|
|
22
|
+
</getAllResponse>
|
|
23
|
+
</soapenv:Body>
|
|
24
|
+
</soapenv:Envelope>
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8"?>
|
|
2
|
+
<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
|
|
3
|
+
<soapenv:Body>
|
|
4
|
+
<getAllResponse xmlns="urn:messages_2025_2.platform.webservices.netsuite.com">
|
|
5
|
+
<getAllResult>
|
|
6
|
+
<platformCore:status isSuccess="false" xmlns:platformCore="urn:core_2025_2.platform.webservices.netsuite.com">
|
|
7
|
+
<platformCore:statusDetail type="ERROR">
|
|
8
|
+
<platformCore:code>INVALID_RECORD_TYPE</platformCore:code>
|
|
9
|
+
<platformCore:message>Invalid record type for getAll.</platformCore:message>
|
|
10
|
+
</platformCore:statusDetail>
|
|
11
|
+
</platformCore:status>
|
|
12
|
+
</getAllResult>
|
|
13
|
+
</getAllResponse>
|
|
14
|
+
</soapenv:Body>
|
|
15
|
+
</soapenv:Envelope>
|
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8"?>
|
|
2
|
+
<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
|
|
3
|
+
<soapenv:Header>
|
|
4
|
+
<platformMsgs:documentInfo xmlns:platformMsgs="urn:messages_2017_1.platform.webservices.netsuite.com">
|
|
5
|
+
<platformMsgs:nsId>WEBSERVICES_563214_053120061943428686160042948_4bee0685</platformMsgs:nsId>
|
|
6
|
+
</platformMsgs:documentInfo>
|
|
7
|
+
</soapenv:Header>
|
|
8
|
+
<soapenv:Body>
|
|
9
|
+
<getAsyncResultResponse xmlns="urn:messages_2017_1.platform.webservices.netsuite.com">
|
|
10
|
+
<asyncResult xmlns="urn:core_2017_1.platform.webservices.netsuite.com">
|
|
11
|
+
<jobId>ASYNCWEBSERVICES_563214_053120061943428686160042948_4bee0685</jobId>
|
|
12
|
+
<status>finished</status>
|
|
13
|
+
<writeResponseList>
|
|
14
|
+
<writeResponse>
|
|
15
|
+
<platformCore:status isSuccess="true" xmlns:platformCore="urn:core_2017_1.platform.webservices.netsuite.com"/>
|
|
16
|
+
<baseRef internalId="974" externalId="ext2" type="customer" xsi:type="platformCore:RecordRef" xmlns:platformCore="urn:core_2017_1.platform.webservices.netsuite.com"/>
|
|
17
|
+
</writeResponse>
|
|
18
|
+
</writeResponseList>
|
|
19
|
+
</asyncResult>
|
|
20
|
+
</getAsyncResultResponse>
|
|
21
|
+
</soapenv:Body>
|
|
22
|
+
</soapenv:Envelope>
|
|
@@ -0,0 +1,26 @@
|
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8"?>
|
|
2
|
+
<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
|
|
3
|
+
<soapenv:Header>
|
|
4
|
+
<platformMsgs:documentInfo xmlns:platformMsgs="urn:messages_2021_1.platform.webservices.netsuite.com">
|
|
5
|
+
<platformMsgs:nsId>ASYNCWEBSERVICES_123456_SB1_000000000000000000000000000_0000000</platformMsgs:nsId>
|
|
6
|
+
</platformMsgs:documentInfo>
|
|
7
|
+
</soapenv:Header>
|
|
8
|
+
<soapenv:Body>
|
|
9
|
+
<getAsyncResultResponse xmlns="urn:messages_2021_1.platform.webservices.netsuite.com">
|
|
10
|
+
<asyncResult xmlns="urn:core_2021_1.platform.webservices.netsuite.com">
|
|
11
|
+
<jobId>ASYNCWEBSERVICES_123456_SB1_000000000000000000000000000_0000000</jobId>
|
|
12
|
+
<status>finished</status>
|
|
13
|
+
<writeResponseList>
|
|
14
|
+
<writeResponse>
|
|
15
|
+
<platformCore:status isSuccess="true" xmlns:platformCore="urn:core_2021_1.platform.webservices.netsuite.com">
|
|
16
|
+
<platformCore:statusDetail>
|
|
17
|
+
<platformCore:afterSubmitFailed>false</platformCore:afterSubmitFailed>
|
|
18
|
+
</platformCore:statusDetail>
|
|
19
|
+
</platformCore:status>
|
|
20
|
+
<baseRef xsi:type="platformCore:RecordRef" type="cashSale" externalId="ext1" internalId="100001" xmlns:platformCore="urn:core_2021_1.platform.webservices.netsuite.com"/>
|
|
21
|
+
</writeResponse>
|
|
22
|
+
</writeResponseList>
|
|
23
|
+
</asyncResult>
|
|
24
|
+
</getAsyncResultResponse>
|
|
25
|
+
</soapenv:Body>
|
|
26
|
+
</soapenv:Envelope>
|
|
@@ -0,0 +1,34 @@
|
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8"?>
|
|
2
|
+
<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
|
|
3
|
+
<soapenv:Header>
|
|
4
|
+
<platformMsgs:documentInfo xmlns:platformMsgs="urn:messages_2021_1.platform.webservices.netsuite.com">
|
|
5
|
+
<platformMsgs:nsId>ASYNCWEBSERVICES_123456_SB1_000000000000000000000000000_0000001</platformMsgs:nsId>
|
|
6
|
+
</platformMsgs:documentInfo>
|
|
7
|
+
</soapenv:Header>
|
|
8
|
+
<soapenv:Body>
|
|
9
|
+
<getAsyncResultResponse xmlns="urn:messages_2021_1.platform.webservices.netsuite.com">
|
|
10
|
+
<asyncResult xmlns="urn:core_2021_1.platform.webservices.netsuite.com">
|
|
11
|
+
<jobId>ASYNCWEBSERVICES_123456_SB1_000000000000000000000000000_0000001</jobId>
|
|
12
|
+
<status>finished</status>
|
|
13
|
+
<writeResponseList>
|
|
14
|
+
<writeResponse>
|
|
15
|
+
<platformCore:status isSuccess="true" xmlns:platformCore="urn:core_2021_1.platform.webservices.netsuite.com">
|
|
16
|
+
<platformCore:statusDetail>
|
|
17
|
+
<platformCore:afterSubmitFailed>false</platformCore:afterSubmitFailed>
|
|
18
|
+
</platformCore:statusDetail>
|
|
19
|
+
</platformCore:status>
|
|
20
|
+
<baseRef xsi:type="platformCore:RecordRef" type="cashSale" externalId="ext1" internalId="100001" xmlns:platformCore="urn:core_2021_1.platform.webservices.netsuite.com"/>
|
|
21
|
+
</writeResponse>
|
|
22
|
+
<writeResponse>
|
|
23
|
+
<platformCore:status isSuccess="true" xmlns:platformCore="urn:core_2021_1.platform.webservices.netsuite.com">
|
|
24
|
+
<platformCore:statusDetail>
|
|
25
|
+
<platformCore:afterSubmitFailed>false</platformCore:afterSubmitFailed>
|
|
26
|
+
</platformCore:statusDetail>
|
|
27
|
+
</platformCore:status>
|
|
28
|
+
<baseRef xsi:type="platformCore:RecordRef" type="cashSale" externalId="ext2" internalId="100002" xmlns:platformCore="urn:core_2021_1.platform.webservices.netsuite.com"/>
|
|
29
|
+
</writeResponse>
|
|
30
|
+
</writeResponseList>
|
|
31
|
+
</asyncResult>
|
|
32
|
+
</getAsyncResultResponse>
|
|
33
|
+
</soapenv:Body>
|
|
34
|
+
</soapenv:Envelope>
|
|
@@ -0,0 +1,38 @@
|
|
|
1
|
+
<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
|
|
2
|
+
<soapenv:Header>
|
|
3
|
+
<platformMsgs:documentInfo xmlns:platformMsgs="urn:messages_2016_1.platform.webservices.netsuite.com">
|
|
4
|
+
<platformMsgs:nsId>WEBSERVICES_3868171_122020162073815481885806769_24761121647f</platformMsgs:nsId>
|
|
5
|
+
</platformMsgs:documentInfo>
|
|
6
|
+
</soapenv:Header>
|
|
7
|
+
<soapenv:Body>
|
|
8
|
+
<getDeletedResponse xmlns="urn:messages_2016_1.platform.webservices.netsuite.com">
|
|
9
|
+
<platformCore:getDeletedResult xmlns:platformCore="urn:core_2016_1.platform.webservices.netsuite.com">
|
|
10
|
+
<platformCore:status isSuccess="true"/>
|
|
11
|
+
<platformCore:totalRecords>3</platformCore:totalRecords>
|
|
12
|
+
<platformCore:pageSize>1000</platformCore:pageSize>
|
|
13
|
+
<platformCore:totalPages>1</platformCore:totalPages>
|
|
14
|
+
<platformCore:pageIndex>1</platformCore:pageIndex>
|
|
15
|
+
<platformCore:deletedRecordList>
|
|
16
|
+
<platformCore:deletedRecord>
|
|
17
|
+
<platformCore:deletedDate>2016-12-15T15:00:00.000-08:00</platformCore:deletedDate>
|
|
18
|
+
<platformCore:record internalId="1" type="invoice" xsi:type="platformCore:RecordRef">
|
|
19
|
+
<platformCore:name>REDACTED</platformCore:name>
|
|
20
|
+
</platformCore:record>
|
|
21
|
+
</platformCore:deletedRecord>
|
|
22
|
+
<platformCore:deletedRecord>
|
|
23
|
+
<platformCore:deletedDate>2016-12-09T13:00:00.000-08:00</platformCore:deletedDate>
|
|
24
|
+
<platformCore:record internalId="2" type="invoice" xsi:type="platformCore:RecordRef">
|
|
25
|
+
<platformCore:name>REDACTED</platformCore:name>
|
|
26
|
+
</platformCore:record>
|
|
27
|
+
</platformCore:deletedRecord>
|
|
28
|
+
<platformCore:deletedRecord>
|
|
29
|
+
<platformCore:deletedDate>2016-12-15T15:00:00.000-08:00</platformCore:deletedDate>
|
|
30
|
+
<platformCore:record internalId="3" type="invoice" xsi:type="platformCore:RecordRef">
|
|
31
|
+
<platformCore:name>REDACTED</platformCore:name>
|
|
32
|
+
</platformCore:record>
|
|
33
|
+
</platformCore:deletedRecord>
|
|
34
|
+
</platformCore:deletedRecordList>
|
|
35
|
+
</platformCore:getDeletedResult>
|
|
36
|
+
</getDeletedResponse>
|
|
37
|
+
</soapenv:Body>
|
|
38
|
+
</soapenv:Envelope>
|
|
@@ -0,0 +1,46 @@
|
|
|
1
|
+
<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
|
|
2
|
+
<soapenv:Header>
|
|
3
|
+
<platformMsgs:documentInfo xmlns:platformMsgs="urn:messages_2016_2.platform.webservices.netsuite.com">
|
|
4
|
+
<platformMsgs:nsId>WEBSERVICES_3868171_122020162073815481885806769_24761121647f</platformMsgs:nsId>
|
|
5
|
+
</platformMsgs:documentInfo>
|
|
6
|
+
</soapenv:Header>
|
|
7
|
+
<soapenv:Body>
|
|
8
|
+
<getItemAvailabilityResponse xmlns="urn:messages_2016_2.platform.webservices.netsuite.com">
|
|
9
|
+
<platformCore:getItemAvailabilityResult xmlns:platformCore="urn:core_2016_2.platform.webservices.netsuite.com">
|
|
10
|
+
<platformCore:status isSuccess="true"/>
|
|
11
|
+
<platformCore:itemAvailabilityList>
|
|
12
|
+
<platformCore:itemAvailability>
|
|
13
|
+
<platformCore:item internalId="57" type="inventoryItem">
|
|
14
|
+
<platformCore:name>CD-R</platformCore:name>
|
|
15
|
+
</platformCore:item>
|
|
16
|
+
<platformCore:lastQtyAvailableChange>2022-05-05T03:40:06.000-07:00</platformCore:lastQtyAvailableChange>
|
|
17
|
+
<platformCore:locationId internalId="1" type="location">
|
|
18
|
+
<platformCore:name>Warehouse - East Coast</platformCore:name>
|
|
19
|
+
</platformCore:locationId>
|
|
20
|
+
<platformCore:quantityOnHand>264.0</platformCore:quantityOnHand>
|
|
21
|
+
<platformCore:onHandValueMli>129.36</platformCore:onHandValueMli>
|
|
22
|
+
<platformCore:reorderPoint>50.0</platformCore:reorderPoint>
|
|
23
|
+
<platformCore:quantityOnOrder>0.0</platformCore:quantityOnOrder>
|
|
24
|
+
<platformCore:quantityCommitted>0.0</platformCore:quantityCommitted>
|
|
25
|
+
<platformCore:quantityAvailable>264.0</platformCore:quantityAvailable>
|
|
26
|
+
</platformCore:itemAvailability>
|
|
27
|
+
<platformCore:itemAvailability>
|
|
28
|
+
<platformCore:item internalId="57" type="inventoryItem">
|
|
29
|
+
<platformCore:name>CD-R</platformCore:name>
|
|
30
|
+
</platformCore:item>
|
|
31
|
+
<platformCore:lastQtyAvailableChange>2020-04-27T08:38:20.000-07:00</platformCore:lastQtyAvailableChange>
|
|
32
|
+
<platformCore:locationId internalId="2" type="location">
|
|
33
|
+
<platformCore:name>Warehouse - West Coast</platformCore:name>
|
|
34
|
+
</platformCore:locationId>
|
|
35
|
+
<platformCore:quantityOnHand>-1.0</platformCore:quantityOnHand>
|
|
36
|
+
<platformCore:onHandValueMli>0.0</platformCore:onHandValueMli>
|
|
37
|
+
<platformCore:reorderPoint>50.0</platformCore:reorderPoint>
|
|
38
|
+
<platformCore:quantityOnOrder>0.0</platformCore:quantityOnOrder>
|
|
39
|
+
<platformCore:quantityCommitted>0.0</platformCore:quantityCommitted>
|
|
40
|
+
<platformCore:quantityAvailable>0.0</platformCore:quantityAvailable>
|
|
41
|
+
</platformCore:itemAvailability>
|
|
42
|
+
</platformCore:itemAvailabilityList>
|
|
43
|
+
</platformCore:getItemAvailabilityResult>
|
|
44
|
+
</getItemAvailabilityResponse>
|
|
45
|
+
</soapenv:Body>
|
|
46
|
+
</soapenv:Envelope>
|
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8"?>
|
|
2
|
+
<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
|
|
3
|
+
<soapenv:Header>
|
|
4
|
+
<platformMsgs:documentInfo xmlns:platformMsgs="urn:messages_2017_1.platform.webservices.netsuite.com">
|
|
5
|
+
<platformMsgs:nsId>WEBSERVICES_1234_GET_LIST_ERROR</platformMsgs:nsId>
|
|
6
|
+
</platformMsgs:documentInfo>
|
|
7
|
+
</soapenv:Header>
|
|
8
|
+
<soapenv:Body>
|
|
9
|
+
<getListResponse xmlns="urn:messages_2017_1.platform.webservices.netsuite.com">
|
|
10
|
+
<readResponseList>
|
|
11
|
+
<readResponse>
|
|
12
|
+
<platformCore:status isSuccess="false" xmlns:platformCore="urn:core_2017_1.platform.webservices.netsuite.com">
|
|
13
|
+
<platformCore:statusDetail type="ERROR">
|
|
14
|
+
<platformCore:code>RCRD_DSNT_EXIST</platformCore:code>
|
|
15
|
+
<platformCore:message>That record does not exist.</platformCore:message>
|
|
16
|
+
</platformCore:statusDetail>
|
|
17
|
+
</platformCore:status>
|
|
18
|
+
</readResponse>
|
|
19
|
+
</readResponseList>
|
|
20
|
+
</getListResponse>
|
|
21
|
+
</soapenv:Body>
|
|
22
|
+
</soapenv:Envelope>
|
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8"?>
|
|
2
|
+
<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
|
|
3
|
+
<soapenv:Header>
|
|
4
|
+
<platformMsgs:documentInfo xmlns:platformMsgs="urn:messages_2017_1.platform.webservices.netsuite.com">
|
|
5
|
+
<platformMsgs:nsId>WEBSERVICES_1234_GET_LIST_SINGLE</platformMsgs:nsId>
|
|
6
|
+
</platformMsgs:documentInfo>
|
|
7
|
+
</soapenv:Header>
|
|
8
|
+
<soapenv:Body>
|
|
9
|
+
<getListResponse xmlns="urn:messages_2017_1.platform.webservices.netsuite.com">
|
|
10
|
+
<readResponseList>
|
|
11
|
+
<readResponse>
|
|
12
|
+
<platformCore:status isSuccess="true" xmlns:platformCore="urn:core_2017_1.platform.webservices.netsuite.com"/>
|
|
13
|
+
<record internalId="979" xsi:type="listRel:Customer" xmlns:listRel="urn:relationships_2017_1.lists.webservices.netsuite.com">
|
|
14
|
+
<listRel:entityId>Test Customer</listRel:entityId>
|
|
15
|
+
<listRel:companyName>Test Inc.</listRel:companyName>
|
|
16
|
+
</record>
|
|
17
|
+
</readResponse>
|
|
18
|
+
</readResponseList>
|
|
19
|
+
</getListResponse>
|
|
20
|
+
</soapenv:Body>
|
|
21
|
+
</soapenv:Envelope>
|
|
@@ -0,0 +1,28 @@
|
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8"?>
|
|
2
|
+
<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
|
|
3
|
+
<soapenv:Header>
|
|
4
|
+
<platformMsgs:documentInfo xmlns:platformMsgs="urn:messages_2017_1.platform.webservices.netsuite.com">
|
|
5
|
+
<platformMsgs:nsId>WEBSERVICES_1234_GET_LIST_MULTIPLE</platformMsgs:nsId>
|
|
6
|
+
</platformMsgs:documentInfo>
|
|
7
|
+
</soapenv:Header>
|
|
8
|
+
<soapenv:Body>
|
|
9
|
+
<getListResponse xmlns="urn:messages_2017_1.platform.webservices.netsuite.com">
|
|
10
|
+
<readResponseList>
|
|
11
|
+
<readResponse>
|
|
12
|
+
<platformCore:status isSuccess="true" xmlns:platformCore="urn:core_2017_1.platform.webservices.netsuite.com"/>
|
|
13
|
+
<record internalId="979" xsi:type="listRel:Customer" xmlns:listRel="urn:relationships_2017_1.lists.webservices.netsuite.com">
|
|
14
|
+
<listRel:entityId>First Customer</listRel:entityId>
|
|
15
|
+
<listRel:companyName>First Inc.</listRel:companyName>
|
|
16
|
+
</record>
|
|
17
|
+
</readResponse>
|
|
18
|
+
<readResponse>
|
|
19
|
+
<platformCore:status isSuccess="true" xmlns:platformCore="urn:core_2017_1.platform.webservices.netsuite.com"/>
|
|
20
|
+
<record internalId="980" xsi:type="listRel:Customer" xmlns:listRel="urn:relationships_2017_1.lists.webservices.netsuite.com">
|
|
21
|
+
<listRel:entityId>Second Customer</listRel:entityId>
|
|
22
|
+
<listRel:companyName>Second Inc.</listRel:companyName>
|
|
23
|
+
</record>
|
|
24
|
+
</readResponse>
|
|
25
|
+
</readResponseList>
|
|
26
|
+
</getListResponse>
|
|
27
|
+
</soapenv:Body>
|
|
28
|
+
</soapenv:Envelope>
|
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8"?>
|
|
2
|
+
<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
|
|
3
|
+
<soapenv:Header>
|
|
4
|
+
<platformMsgs:documentInfo xmlns:platformMsgs="urn:messages_2016_2.platform.webservices.netsuite.com">
|
|
5
|
+
<platformMsgs:nsId>REDACTED</platformMsgs:nsId>
|
|
6
|
+
</platformMsgs:documentInfo>
|
|
7
|
+
</soapenv:Header>
|
|
8
|
+
<soapenv:Body>
|
|
9
|
+
<getSelectValueResponse xmlns="urn:messages_2016_2.platform.webservices.netsuite.com">
|
|
10
|
+
<platformCore:getSelectValueResult xmlns:platformCore="urn:core_2016_2.platform.webservices.netsuite.com">
|
|
11
|
+
<platformCore:status isSuccess="true">
|
|
12
|
+
<platformCore:statusDetail type="WARN">
|
|
13
|
+
<platformCore:code>WARNING</platformCore:code>
|
|
14
|
+
<platformCore:message>Results are incomplete. You must provide a value for field entity.</platformCore:message>
|
|
15
|
+
</platformCore:statusDetail>
|
|
16
|
+
</platformCore:status>
|
|
17
|
+
<platformCore:totalRecords>0</platformCore:totalRecords>
|
|
18
|
+
<platformCore:totalPages>0</platformCore:totalPages>
|
|
19
|
+
</platformCore:getSelectValueResult>
|
|
20
|
+
</getSelectValueResponse>
|
|
21
|
+
</soapenv:Body>
|
|
22
|
+
</soapenv:Envelope>
|
|
@@ -0,0 +1,43 @@
|
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8"?>
|
|
2
|
+
<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
|
|
3
|
+
<soapenv:Header>
|
|
4
|
+
<platformMsgs:documentInfo xmlns:platformMsgs="urn:messages_2021_2.platform.webservices.netsuite.com">
|
|
5
|
+
<platformMsgs:nsId>REDACTED</platformMsgs:nsId>
|
|
6
|
+
</platformMsgs:documentInfo>
|
|
7
|
+
</soapenv:Header>
|
|
8
|
+
<soapenv:Body>
|
|
9
|
+
<getSelectValueResponse xmlns="urn:messages_2021_2.platform.webservices.netsuite.com">
|
|
10
|
+
<platformCore:getSelectValueResult xmlns:platformCore="urn:core_2021_2.platform.webservices.netsuite.com">
|
|
11
|
+
<platformCore:status isSuccess="true"/>
|
|
12
|
+
<platformCore:totalRecords>8</platformCore:totalRecords>
|
|
13
|
+
<platformCore:totalPages>1</platformCore:totalPages>
|
|
14
|
+
<platformCore:baseRefList>
|
|
15
|
+
<platformCore:baseRef internalId="94" xsi:type="platformCore:RecordRef">
|
|
16
|
+
<platformCore:name>Ground (Custom)</platformCore:name>
|
|
17
|
+
</platformCore:baseRef>
|
|
18
|
+
<platformCore:baseRef internalId="2" xsi:type="platformCore:RecordRef">
|
|
19
|
+
<platformCore:name>Pick-up</platformCore:name>
|
|
20
|
+
</platformCore:baseRef>
|
|
21
|
+
<platformCore:baseRef internalId="3" xsi:type="platformCore:RecordRef">
|
|
22
|
+
<platformCore:name>Special Delivery</platformCore:name>
|
|
23
|
+
</platformCore:baseRef>
|
|
24
|
+
<platformCore:baseRef internalId="91" xsi:type="platformCore:RecordRef">
|
|
25
|
+
<platformCore:name>UPS 2nd Day Air AM&#174;</platformCore:name>
|
|
26
|
+
</platformCore:baseRef>
|
|
27
|
+
<platformCore:baseRef internalId="92" xsi:type="platformCore:RecordRef">
|
|
28
|
+
<platformCore:name>UPS Ground</platformCore:name>
|
|
29
|
+
</platformCore:baseRef>
|
|
30
|
+
<platformCore:baseRef internalId="77" xsi:type="platformCore:RecordRef">
|
|
31
|
+
<platformCore:name>UPS Next Day Air?</platformCore:name>
|
|
32
|
+
</platformCore:baseRef>
|
|
33
|
+
<platformCore:baseRef internalId="96" xsi:type="platformCore:RecordRef">
|
|
34
|
+
<platformCore:name>UPS Next Day Air® Early A.M.®</platformCore:name>
|
|
35
|
+
</platformCore:baseRef>
|
|
36
|
+
<platformCore:baseRef internalId="95" xsi:type="platformCore:RecordRef">
|
|
37
|
+
<platformCore:name>UPS® Ground</platformCore:name>
|
|
38
|
+
</platformCore:baseRef>
|
|
39
|
+
</platformCore:baseRefList>
|
|
40
|
+
</platformCore:getSelectValueResult>
|
|
41
|
+
</getSelectValueResponse>
|
|
42
|
+
</soapenv:Body>
|
|
43
|
+
</soapenv:Envelope>
|
|
@@ -0,0 +1,69 @@
|
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8"?>
|
|
2
|
+
<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
|
|
3
|
+
<soapenv:Header>
|
|
4
|
+
<platformMsgs:documentInfo xmlns:platformMsgs="urn:messages_2011_2.platform.webservices.netsuite.com">
|
|
5
|
+
<platformMsgs:nsId>WEBSERVICES_3392464_0102201215937064331518330846_2ba5246f66c</platformMsgs:nsId>
|
|
6
|
+
</platformMsgs:documentInfo>
|
|
7
|
+
</soapenv:Header>
|
|
8
|
+
<soapenv:Body>
|
|
9
|
+
<initializeResponse xmlns="urn:messages_2011_2.platform.webservices.netsuite.com">
|
|
10
|
+
<readResponse>
|
|
11
|
+
<platformCore:status isSuccess="true" xmlns:platformCore="urn:core_2011_2.platform.webservices.netsuite.com"/>
|
|
12
|
+
<record xsi:type="tranSales:Invoice" xmlns:tranSales="urn:sales_2011_2.transactions.webservices.netsuite.com">
|
|
13
|
+
<tranSales:customForm internalId="101" xmlns:platformCore="urn:core_2011_2.platform.webservices.netsuite.com">
|
|
14
|
+
<platformCore:name>Test Product Invoice</platformCore:name>
|
|
15
|
+
</tranSales:customForm>
|
|
16
|
+
<tranSales:entity internalId="988" xmlns:platformCore="urn:core_2011_2.platform.webservices.netsuite.com">
|
|
17
|
+
<platformCore:name>100157 Shutter Fly</platformCore:name>
|
|
18
|
+
</tranSales:entity>
|
|
19
|
+
<tranSales:tranDate>2012-01-02T00:00:00.000-08:00</tranSales:tranDate>
|
|
20
|
+
<tranSales:tranId>2582003</tranSales:tranId>
|
|
21
|
+
<tranSales:postingPeriod internalId="20" xmlns:platformCore="urn:core_2011_2.platform.webservices.netsuite.com">
|
|
22
|
+
<platformCore:name>Jan 2012</platformCore:name>
|
|
23
|
+
</tranSales:postingPeriod>
|
|
24
|
+
<tranSales:dueDate>2012-01-02T00:00:00.000-08:00</tranSales:dueDate>
|
|
25
|
+
<tranSales:excludeCommission>false</tranSales:excludeCommission>
|
|
26
|
+
<tranSales:account internalId="123" xmlns:platformCore="urn:core_2011_2.platform.webservices.netsuite.com">
|
|
27
|
+
<platformCore:name>1100 Accounts Receivable</platformCore:name>
|
|
28
|
+
</tranSales:account>
|
|
29
|
+
<tranSales:transactionBillAddress xmlns:platformCommon="urn:common_2011_2.platform.webservices.netsuite.com">
|
|
30
|
+
<platformCommon:billAddr1>123 Happy Lane</platformCommon:billAddr1>
|
|
31
|
+
<platformCommon:billCity>Los Angeles</platformCommon:billCity>
|
|
32
|
+
<platformCommon:billState>CA</platformCommon:billState>
|
|
33
|
+
<platformCommon:billZip>90007</platformCommon:billZip>
|
|
34
|
+
<platformCommon:billCountry>_unitedStates</platformCommon:billCountry>
|
|
35
|
+
</tranSales:transactionBillAddress>
|
|
36
|
+
<tranSales:billAddressList internalId="567" xmlns:platformCore="urn:core_2011_2.platform.webservices.netsuite.com">
|
|
37
|
+
<platformCore:name>123 Happy Lane</platformCore:name>
|
|
38
|
+
</tranSales:billAddressList>
|
|
39
|
+
<tranSales:billAddress>123 Happy Lane, Los Angeles, CA 90007</tranSales:billAddress>
|
|
40
|
+
<tranSales:transactionShipAddress xmlns:platformCommon="urn:common_2011_2.platform.webservices.netsuite.com">
|
|
41
|
+
<platformCommon:shipAddr1>123 Happy Lane</platformCommon:shipAddr1>
|
|
42
|
+
<platformCommon:shipCity>Los Angeles</platformCommon:shipCity>
|
|
43
|
+
<platformCommon:shipState>CA</platformCommon:shipState>
|
|
44
|
+
<platformCommon:shipZip>90007</platformCommon:shipZip>
|
|
45
|
+
<platformCommon:shipCountry>_unitedStates</platformCommon:shipCountry>
|
|
46
|
+
<platformCommon:shipIsResidential>false</platformCommon:shipIsResidential>
|
|
47
|
+
</tranSales:transactionShipAddress>
|
|
48
|
+
<tranSales:shipAddressList internalId="567" xmlns:platformCore="urn:core_2011_2.platform.webservices.netsuite.com">
|
|
49
|
+
<platformCore:name>123 Happy Lane</platformCore:name>
|
|
50
|
+
</tranSales:shipAddressList>
|
|
51
|
+
<tranSales:shipAddress>123 Happy Lane, Los Angeles, CA 90007</tranSales:shipAddress>
|
|
52
|
+
<tranSales:shipDate>2012-01-02T00:00:00.000-08:00</tranSales:shipDate>
|
|
53
|
+
<tranSales:subTotal>0.0</tranSales:subTotal>
|
|
54
|
+
<tranSales:syncSalesTeams>false</tranSales:syncSalesTeams>
|
|
55
|
+
<tranSales:discountTotal>0.0</tranSales:discountTotal>
|
|
56
|
+
<tranSales:taxTotal>0.0</tranSales:taxTotal>
|
|
57
|
+
<tranSales:total>0.0</tranSales:total>
|
|
58
|
+
<tranSales:itemCostDiscPrint>false</tranSales:itemCostDiscPrint>
|
|
59
|
+
<tranSales:expCostDiscPrint>false</tranSales:expCostDiscPrint>
|
|
60
|
+
<tranSales:customFieldList xmlns:platformCore="urn:core_2011_2.platform.webservices.netsuite.com">
|
|
61
|
+
<platformCore:customField internalId="custbody_3rd_party" xsi:type="platformCore:BooleanCustomFieldRef">
|
|
62
|
+
<platformCore:value>false</platformCore:value>
|
|
63
|
+
</platformCore:customField>
|
|
64
|
+
</tranSales:customFieldList>
|
|
65
|
+
</record>
|
|
66
|
+
</readResponse>
|
|
67
|
+
</initializeResponse>
|
|
68
|
+
</soapenv:Body>
|
|
69
|
+
</soapenv:Envelope>
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
|
|
2
|
+
<soapenv:Body>
|
|
3
|
+
<soapenv:Fault>
|
|
4
|
+
<faultcode>soapenv:Server.userException</faultcode>
|
|
5
|
+
<faultstring>Only one request may be made against a session at a time</faultstring>
|
|
6
|
+
<detail>
|
|
7
|
+
<platformFaults:exceededRequestLimitFault xmlns:platformFaults="urn:faults_2011_2.platform.webservices.netsuite.com">
|
|
8
|
+
<platformFaults:code>WS_CONCUR_SESSION_DISALLWD</platformFaults:code>
|
|
9
|
+
<platformFaults:message>Only one request may be made against a session at a time</platformFaults:message>
|
|
10
|
+
</platformFaults:exceededRequestLimitFault>
|
|
11
|
+
<ns1:hostname xmlns:ns1="http://xml.apache.org/axis/">partners-java10003.bos.netledger.com</ns1:hostname>
|
|
12
|
+
</detail>
|
|
13
|
+
</soapenv:Fault>
|
|
14
|
+
</soapenv:Body>
|
|
15
|
+
</soapenv:Envelope>
|