Contract Data Information

Contract Data Information

https://api.worldota.net/api/b2b/v3/general/contract/data/info/

The call gets contracts information.

Request example

curl --user '<KEY_ID>:<API_KEY>' 'https://api.worldota.net/api/b2b/v3/general/contract/data/info/'

Response

contract_datas Object

The partner contract list.

active_from String
The contract commencement date.
agreement_date String
The contract agreement date.
agreement_number String
The contract agreement number.
closing_documents_issuance_type String

The contract confirmatory accounting documents issuance type.

ℹ️
  • The possible values:
    • half_monthly.
    • monthly.
    • single_order.
    • weekly.
    • decadly.
kind String

The contract kind.

ℹ️
  • The possible values:
    • informational-services.
    • agency.
    • services.
    • corp.
    • individual-contractor.
legal_entity Object

The contract legal entity information.

address_actual String
The actual address.
address_legal String
The legal (registered) address.
name String
The legal entity name.
taxpayer_id String
The taxpayer identification number.
terminated_at String
The contract termination date.

Response example

{
  "data":{
    "contract_datas":[
      {
        "active_from": "2018-07-02",
        "agreement_date": "2018-06-29",
        "agreement_number": "AFF-12980",
        "closing_documents_issuance_type": "monthly",
        "kind": "informational-services",
        "legal_entity": {
          "address_actual": "123 N Columbia Blvd",
          "address_legal": "113 N Columbia Blvd",
          "name": "123onetwothree",
          "taxpayer_id": "1231231231"
        },
        "terminated_at": null
      }
    ]
  },
  "debug": null,
  "error": null,
  "status": "ok"
}