Create an order for dropship partner.

Add MCP server to your AI tool

Allow AI tools and LLMs to interact with the API documentation portal through MCP.

MCP server URL

https://doc-dropship.dipli.com/mcp

Standard setup for AI tools providing an mcp.json file

mcp.json
"Dipli - Dropship API MCP server": {
  "url": "https://doc-dropship.dipli.com/mcp"
}
Close
POST /api-drop/v2/orders
application/json

Body Required

  • alternative_id string Required

    order's partner ID

  • product_id integer Required

    product's dropship ID

  • buyer string Required

    order's buyer

  • street string Required

    street

  • additional_street string

    additional_street

  • postcode string Required

    postcode

  • city string Required

    city

  • country string Required

    country

  • buyer_phone string Required

    buyer's phone

  • buyer_email string Required

    buyer's email

  • extra string

    order's extra

Responses

  • 200 application/json

    create an order for dropship partner

    Hide response attributes Show response attributes object
    • code integer
    • msg string
    • public_id string Required

      order's public id

  • 400 application/json

    Bad request

    Hide response attributes Show response attributes object
    • code integer
    • msg string
  • 500 application/json

    Internal server error

    Hide response attributes Show response attributes object
    • code integer
    • msg string
POST /api-drop/v2/orders
curl \
 --request POST 'https://bi.agora.place/api-drop/v2/orders' \
 --header "apikey: $API_KEY" \
 --header "Content-Type: application/json" \
 --data '{"alternative_id":"string","product_id":42,"buyer":"string","street":"string","additional_street":"string","postcode":"string","city":"string","country":"string","buyer_phone":"string","buyer_email":"string","extra":"string"}'
Request examples
{
  "alternative_id": "string",
  "product_id": 42,
  "buyer": "string",
  "street": "string",
  "additional_street": "string",
  "postcode": "string",
  "city": "string",
  "country": "string",
  "buyer_phone": "string",
  "buyer_email": "string",
  "extra": "string"
}
Response examples (200)
{
  "code": 200,
  "msg": "Success",
  "public_id": "A-12345"
}
Response examples (400)
{
  "code": 400,
  "msg": "Bad Request"
}
Response examples (500)
{
  "code": 500,
  "msg": "Internale Server Error"
}