Hello,
When I used programmatically(python pgm) access order API to create an order,I got a 500 err and then message is "The API is temporarily unavailable. Please retry, if the issue persists, Please contact TI customer support".I thought it's a server down in a short time.But I have tried some times in two days.I still get the err.Even I use the order API portal(https://api-portal.ti.com/store-orderapi#/TI%20store%20production%20order/post_store_orders),It's the same.So could you please help me?
programmatically:
mothed:request.post
payload:
data = {
"order": {
"checkoutProfileId": "###",
"customerPurchaseOrderNumber": "test001",
"endCustomerCompanyName": "dethfield",
"customerOrderComments": [
{
"message": "this is my first order"
}
],
"lineItems": [
{
"customerLineItemNumber": 1,
"tiPartNumber": "TLV62084DSGR",
"customerPartNumber": "product001",
"quantity": 1,
"customerItemComments": [
{
"message": "product001"
}
]
},
{
"customerLineItemNumber": 2,
"tiPartNumber": "TLV62084DSGT",
"quantity": 1
}
]
}
}
order portal:
Please ref the attache file.
###