Cancel a Picking
Endpoint Overview
This API endpoint provides a detailed overview of the endpoint responsible for canceling a picking receipt within the Inventory module of the Juleb ERP.
Endpoint Details
- Method: POST
- URL:
/api/v1/inventory/picking/cancel
Parameters
- Path Parameters: None
- Query Parameters: None
{
"id": integer
}
Response
- 202 OK: The requested resource has been updated.
- 400 Bad Request: Bad request.
- 401 Unauthorized: Unauthorized.
Response Body
confirmation message with picking ID.
Example
Request
- NodeJS
- curl
- python
- java
const axios = require('axios');
const accountName = process.env.ACCOUNT_NAME;
const apiKey = process.env.API_KEY;
axios.post(`https://${accountName}.juleb.com/api/v1/inventory/picking/cancel`, {
id: 11001
}, {
headers: {
'accept': '*/*',
'Authorization': `Bearer ${apiKey}`,
'Content-Type': 'application/json'
}
})
.then(response => {
console.log(response.data);
})
.catch(error => {
console.error('Error:', error);
});
curl -X POST \
-H "accept: */*" \
-H "Authorization: Bearer $API_KEY" \
-H "Content-Type: application/json" \
-d '{
"id": 11001
}' \
"https://$ACCOUNT_NAME.juleb.com/api/v1/inventory/picking/cancel"
import os
import requests
account_name = os.getenv('ACCOUNT_NAME')
api_key = os.getenv('API_KEY')
url = f'https://{account_name}.juleb.com/api/v1/inventory/picking/cancel'
headers = {
'accept': '*/*',
'Authorization': f'Bearer {api_key}',
'Content-Type': 'application/json'
}
data = {
id: 11001
}
response = requests.post(url, headers=headers, json=data)
if response.status_code == 200:
print(response.json())
else:
print(f'Error: {response.status_code}', response.text)
import java.net.URI;
import java.net.http.HttpClient;
import java.net.http.HttpRequest;
import java.net.http.HttpResponse;
import java.net.http.HttpResponse.BodyHandlers;
import java.nio.file.Path;
import java.nio.file.Paths;
import java.nio.file.Files;
public class Main {
public static void main(String[] args) throws Exception {
String accountName = System.getenv("ACCOUNT_NAME");
String apiKey = System.getenv("API_KEY");
String json = "{\n" + " \"id\": 11001\n" + "}";
HttpClient client = HttpClient.newHttpClient();
HttpRequest request = HttpRequest.newBuilder()
.uri(new URI("https://" + accountName + ".juleb.com/api/v1/inventory/picking/cancel"))
.header("accept", "*/*")
.header("Authorization", "Bearer " + apiKey)
.header("Content-Type", "application/json")
.POST(HttpRequest.BodyPublishers.ofString(json))
.build();
HttpResponse<String> response = client.send(request, BodyHandlers.ofString());
if (response.statusCode() == 200) {
System.out.println(response.body());
} else {
System.out.println("Error: " + response.statusCode() + ", " + response.body());
}
}
}
Response
Picking 11001 cancelled