Post a partner
Endpoint Overview
This API endpoint provides a detailed overview of the endpoint responsible for creating a partner record within the Juleb ERP.
Partner list:
- Customer
- Vendor
- Employee
Endpoint Details
- Method: POST
- URL:
/api/v1/resources/partner/
Parameters
- Path Parameters: None
- Query Parameters: None
Request body
{
"name": "string"
}
Response
- 201 OK: The requested resource has been created.
- 400 Bad Request: Bad request.
- 401 Unauthorized: Unauthorized.
Response Body
{
"data": {
id
}
}
Example
Request
- NodeJS
- curl
- python
- java
curl -X 'POST' \
'https://$ACCOUNT_NAME/api/v1/resources/partner' \
-H 'accept: */*' \
-H 'Authorization: Bearer $API_KEY' \
-H 'Content-Type: application/json' \
-d '{
"name": "Ruba Ahmed"
}'
const axios = require('axios');
const accountName = process.env.ACCOUNT_NAME;
const apiKey = process.env.API_KEY;
axios.post(`https://${accountName}.juleb.com/api/v1/resources/partner`, {
name: "Ruba Ahmed"
}, {
headers: {
'accept': '*/*',
'Authorization': `Bearer ${apiKey}`,
'Content-Type': 'application/json'
}
})
.then(response => {
console.log(response.data);
})
.catch(error => {
console.error('Error:', error);
});
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;
String jsonPayload = "{ \"name\": \"Ruba Ahmed\" }";
HttpClient client = HttpClient.newHttpClient();
HttpRequest request = HttpRequest.newBuilder()
.uri(new URI("https://" + accountName + ".juleb.com/api/v1/resources/partner"))
.header("accept", "*/*")
.header("Authorization", "Bearer " + apiKey)
.header("Content-Type", "application/json")
.POST(BodyPublishers.ofString(jsonPayload))
.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());
}
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/resources/partner'
headers = {
'accept': '*/*',
'Authorization': f'Bearer {api_key}',
'Content-Type': 'application/json'
}
data = {
'name': 'Ruba Ahmed'
}
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}")
Response
{
2183
}