Skip to main content
Altcraft Docs LogoAltcraft Docs Logo
User guideDeveloper guideAdmin guide
Company siteHelp center
English
  • Русский
  • English
v74
  • v74
  • v73
  • v72
Login
  • User API documentation
  • API interaction
  • Matching
  • Profiles
  • Databases
  • Resources
  • Segments
  • Suppression lists
  • Templates and fragments
  • Campaigns
  • Mailings
  • Automation scenarios
  • Loyalty Programs
  • Promo codes
  • Goals
  • Application push notifications
  • Market
    • Market objects
    • Orders
      • Import order and item statuses
      • Get orders list
      • Delete order
      • Get order status
      • Update order line status
    • Products and SKU
  • Analytic reports
  • SendersDev
  • External datatables queries
  • Objects
  • Miscellaneous
  • Importing the API collection in Postman
  • List of API endpoints
  • SDK
  • Market
  • Orders
  • Get order status
Documentation for version v74

Get order status

Description​

Get information of order status.

In the request, you need to use a token that is assigned a role with the appropriate access rules.

URL​

Method: POST

https://example.com/api/v1.1/market/orders/get_status

Request parameters​

ParameterTypeExampleRequiredDescription
tokenstring"abcdefghijklmnqrstuvwxyz"YesAPI token
idint1Not if external_id is passedInternal order ID
external_idstring"A598t32D"Not if id is passedExternal order ID

Request example JSON​

  • JSON
  • XML
{           
"token": "abcdefghijklmnqrstuvwxyz",
"id": 1
}

{
"token": "abcdefghijklmnqrstuvwxyz",
"external_id": "A598t32D"
}
<xml>
<token>abcdefghijklmnqrstuvwxyz</token>
<id>1</id>
</xml>

<xml>
<token>abcdefghijklmnqrstuvwxyz</token>
<external_id>"A598t32D"</external_id>
</xml>

Response example​

  • JSON
  • XML
{
"error": 0,
"error_text": "",
"result": {
"endpoint": "marketplace",
"status": "delivered"
}
}

<xml>
<error>0</error>
<error_text></error_text>
<result>
<endpoint>"marketplace"</endpoint>
<status>"delivered"</status>
</result>
</xml>

Response parameters​

ParameterTypeDescription
resultarrayArray of received data on orders
errorintError code
error_textstringError text
Last updated on Sep 9, 2024
Previous
Delete order
Next
Update order line status
  • Description
  • URL
  • Request parameters
  • Request example JSON
  • Response example
  • Response parameters
© 2015 - 2025 Altcraft, LLC. All rights reserved.