Get Account PO Strategy
get
https://api.flxpoint.com/account/purchase-order-strategyUse this when you want to pull account data through the API.
🔑 X-API-TOKEN⏱ 2 req/sToken: Account · Source · Channel
This page explains the endpoint. To send a live test request, use the interactive tester in Stoplight or your own Postman / HTTP client.
Deprecated, please use `/account/po-strategy`
Request
Example request
get
/account/purchase-order-strategycurl -X GET "https://api.flxpoint.com/account/purchase-order-strategy" \
-H "Accept: application/json" \
-H "X-API-TOKEN: YOUR_TOKEN"Responses
200OKapplication/json
idintegerautoProcessbooleanpurchaseOrderNumberStrategyIdintegerpassOrderCustomFieldsToPobooleanpassOrderItemCustomFieldsToPobooleanpackingSlipFormatstringRequired when 'auto generate packing slip' source setting is enabled. Specifies the type of packing slip format being applied. Use 'basic', 'detailed'.
allowed
basicdetailedpackingSlipOptionsstringExample response
{
"id": 0,
"autoProcess": true,
"purchaseOrderNumberStrategyId": 0,
"passOrderCustomFieldsToPo": true,
"passOrderItemCustomFieldsToPo": true,
"packingSlipFormat": "basic",
"packingSlipOptions": "string"
}401Unauthorized
No schema documented for this status.
404Not Found
No schema documented for this status.
OpenAPI fragment
{
"get": {
"summary": "Get Account PO Strategy",
"description": "Deprecated, please use `/account/po-strategy`",
"parameters": [],
"responses": {
"200": {
"description": "OK",
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/AccountPurchaseOrderStrategy"
}
}
}
},
"401": {
"description": "Unauthorized"
},
"404": {
"description": "Not Found"
}
}
}
}Ready to run it? Send the curl from your terminal or Postman, or use the interactive tester in Stoplight.Open in Stoplight