[POST] Get Payment IDs
Request Description
POST /v1/order/search
The request allows you to get a list of payment identifiers that match the search criteria provided.
This request can also be used to get a list of order identifiers via Noventiq Checkout.
Connection Data
- Endpoint URL:
- Production environment: https://api.ecommerce.noventiq.com/v1/order
- Test environment: https://api.ecommerce.noventiq.com.demoslweb.com/v1/order
- Request Method: POST
- Format: JSON
- Authorization: token-based
- Format:
Bearer [token]
- Replace [token] with the token value you get in response to the request sent to the Authentication API
This identifier you transferred when creating a payment (payment_id) or processing an auto-payment (payment_id).
For orders in Noventiq Checkout: Checkout identifier. It is used if an order for a product with dynamic characteristics has been placed.
The system finds the payments that meet the following condition: [date and time of payment object creation] ≥ [create_date_from].
Format: YYYY-MM-DDThh:mm:ss±hh:mm.
The system finds the payments that meet the following condition: [date and time of payment object creation] ≤ [create_date_to].
Format: YYYY-MM-DDThh:mm:ss±hh:mm.
The system finds the payments that meet the following condition: [date and time of payment successfully completed ≥ [pay_date_from].
Format: YYYY-MM-DDThh:mm:ss±hh:mm.
The system finds the payments that meet the following condition: [date and time of payment successfully completed] ≤ [pay_date_to].
Format: YYYY-MM-DDThh:mm:ss±hh:mm.
- Format: ISO 4217 alpha-3, 3 characters
- For the value options, see the reference guide
For the value options, see the reference guide
If the parameter is not transferred, the default value of payment quantity returns in response. Please contact our support team if you require to change this value.
Request Example
Example with parameters in request body
{
"status": "not paid",
"external_id": "12345",
"create_date_from": "2022-01-01T00:00:00+00:00",
"create_date_to": "2022-01-31T00:00:00+00:00",
"pay_date_from": "2022-01-01T00:00:00+00:00",
"pay_date_to": "2022-01-31T00:00:00+00:00",
"currency": "EUR",
"email": "customer@mail.com",
"payment_method": "CreditCard",
"limit": 100,
"offset": 10
}
Example of request without parameters
{}
Response Description
In response to the request, you receive the server response code corresponding to the processing result. Depending on the code, the response body may contain additional parameters.
Successful Response
If processing is successful, the following will return in response server response code: HTTP/1.1 200 OК. Response body: list of found payment IDs in JSON format.
Successful Response Example
{
"count_all": 155,
"limit": 5,
"offset": 5,
"ids": [
11111111,
22222222,
33333333
]
}
Error Response
If an error occurs while processing the request, you receive a server response code corresponding to the result of processing.
Depending on the code, the response body may contain additional parameters.
HTTP Server Response Error Code
HTTP code | Description |
HTTP/1.1 400 Bad Request | The request is not valid (error in parameters; necessary data is not transferred, etc.). An additional error code (one or more) will be transferred in the response bodу. |
HTTP/1.1 401 Unauthorized | Unsuccessful authorization. An additional error code (one or more) will be transferred in the response bodу. |
HTTP/1.1 404 Not found | Invalid request URL. |
HTTP/1.1 500 Request Error | Internal Server Error. Please try again later or contact support. |
Additional Error Codes for HTTP 400
Error | Message | Description |
If at least one error from the list below is found, then it returns in response to a request, other errors are not validated. | ||
110 | JSON is not valid. | The request cannot be processed. Request field structure is not valid. Check the fields in the request body against the JSON format. |
111 | Invalid data format (Content-type). | The request cannot be processed. Invalid request header. Content-type must be equal to application/json. |
15000 | Unable to identify your configuration for accessing this API. Please contact technical support. | During processing, we could not identify your account setting unambiguously. Please contact support team. |
If at least one error from the list below is found, then request validation is not interrupted. Several errors may return in response. | ||
15010 | Invalid field value: [parameter name] | The request is not valid, e.g., the parameter name is incorrect, the parameter value does not match with the data type provided, or the value format is incorrect. Moreover, the error will return if null is transferred in the parameter, and this value option is not set as valid in the parameter description. |
Additional Error Codes for HTTP 401
The errors are the same for all the APIs that use token authorization.
Example of Error Response
{
"errors": [{
"error": 15010,
"message": "Invalid field value: email"
}
]
}