Skip to main content
POST
/
v1
/
subcontractors
Subcontractor creation
curl --request POST \
  --url https://api.opx.co/partners/v1/subcontractors \
  --header 'Content-Type: application/json' \
  --data '
{
  "company_name": "<string>",
  "siret": "<string>",
  "address": "<string>",
  "city": "<string>",
  "zipcode": "<string>",
  "email": "jsmith@example.com",
  "firstname": "<string>",
  "lastname": "<string>",
  "country": "<string>",
  "phone": "<string>"
}
'
import requests

url = "https://api.opx.co/partners/v1/subcontractors"

payload = {
    "company_name": "<string>",
    "siret": "<string>",
    "address": "<string>",
    "city": "<string>",
    "zipcode": "<string>",
    "email": "jsmith@example.com",
    "firstname": "<string>",
    "lastname": "<string>",
    "country": "<string>",
    "phone": "<string>"
}
headers = {"Content-Type": "application/json"}

response = requests.post(url, json=payload, headers=headers)

print(response.text)
const options = {
  method: 'POST',
  headers: {'Content-Type': 'application/json'},
  body: JSON.stringify({
    company_name: '<string>',
    siret: '<string>',
    address: '<string>',
    city: '<string>',
    zipcode: '<string>',
    email: 'jsmith@example.com',
    firstname: '<string>',
    lastname: '<string>',
    country: '<string>',
    phone: '<string>'
  })
};

fetch('https://api.opx.co/partners/v1/subcontractors', options)
  .then(res => res.json())
  .then(res => console.log(res))
  .catch(err => console.error(err));
<?php

$curl = curl_init();

curl_setopt_array($curl, [
  CURLOPT_URL => "https://api.opx.co/partners/v1/subcontractors",
  CURLOPT_RETURNTRANSFER => true,
  CURLOPT_ENCODING => "",
  CURLOPT_MAXREDIRS => 10,
  CURLOPT_TIMEOUT => 30,
  CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
  CURLOPT_CUSTOMREQUEST => "POST",
  CURLOPT_POSTFIELDS => json_encode([
    'company_name' => '<string>',
    'siret' => '<string>',
    'address' => '<string>',
    'city' => '<string>',
    'zipcode' => '<string>',
    'email' => 'jsmith@example.com',
    'firstname' => '<string>',
    'lastname' => '<string>',
    'country' => '<string>',
    'phone' => '<string>'
  ]),
  CURLOPT_HTTPHEADER => [
    "Content-Type: application/json"
  ],
]);

$response = curl_exec($curl);
$err = curl_error($curl);

curl_close($curl);

if ($err) {
  echo "cURL Error #:" . $err;
} else {
  echo $response;
}
package main

import (
	"fmt"
	"strings"
	"net/http"
	"io"
)

func main() {

	url := "https://api.opx.co/partners/v1/subcontractors"

	payload := strings.NewReader("{\n  \"company_name\": \"<string>\",\n  \"siret\": \"<string>\",\n  \"address\": \"<string>\",\n  \"city\": \"<string>\",\n  \"zipcode\": \"<string>\",\n  \"email\": \"jsmith@example.com\",\n  \"firstname\": \"<string>\",\n  \"lastname\": \"<string>\",\n  \"country\": \"<string>\",\n  \"phone\": \"<string>\"\n}")

	req, _ := http.NewRequest("POST", url, payload)

	req.Header.Add("Content-Type", "application/json")

	res, _ := http.DefaultClient.Do(req)

	defer res.Body.Close()
	body, _ := io.ReadAll(res.Body)

	fmt.Println(string(body))

}
HttpResponse<String> response = Unirest.post("https://api.opx.co/partners/v1/subcontractors")
  .header("Content-Type", "application/json")
  .body("{\n  \"company_name\": \"<string>\",\n  \"siret\": \"<string>\",\n  \"address\": \"<string>\",\n  \"city\": \"<string>\",\n  \"zipcode\": \"<string>\",\n  \"email\": \"jsmith@example.com\",\n  \"firstname\": \"<string>\",\n  \"lastname\": \"<string>\",\n  \"country\": \"<string>\",\n  \"phone\": \"<string>\"\n}")
  .asString();
require 'uri'
require 'net/http'

url = URI("https://api.opx.co/partners/v1/subcontractors")

http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true

request = Net::HTTP::Post.new(url)
request["Content-Type"] = 'application/json'
request.body = "{\n  \"company_name\": \"<string>\",\n  \"siret\": \"<string>\",\n  \"address\": \"<string>\",\n  \"city\": \"<string>\",\n  \"zipcode\": \"<string>\",\n  \"email\": \"jsmith@example.com\",\n  \"firstname\": \"<string>\",\n  \"lastname\": \"<string>\",\n  \"country\": \"<string>\",\n  \"phone\": \"<string>\"\n}"

response = http.request(request)
puts response.read_body
{
  "data": {
    "id": 123,
    "company_name": "<string>",
    "siren": "<string>",
    "siret": "<string>",
    "address": "<string>",
    "city": "<string>",
    "zipcode": "<string>",
    "country": "<string>",
    "firstname": "<string>",
    "lastname": "<string>",
    "phone": "<string>",
    "email": "<string>"
  }
}
{
  "message": "<string>",
  "errors": {}
}

Body

application/json
company_name
string
required
Maximum string length: 255
siret
string
required
address
string
required
Maximum string length: 255
city
string
required
Maximum string length: 255
zipcode
string
required
email
string<email>
required
Maximum string length: 255
firstname
string
Maximum string length: 255
lastname
string
Maximum string length: 255
country
string | null
Maximum string length: 32
phone
string | null

Response

SubcontractorResource

data
SubcontractorResource · object
required