Create Fleet

Create Fleet Endpoint

Description

Create a new fleet by providing a unique fleet name.

The default response format is JSON. To receive XML, set the Accept header to application/xml.

HTTP Request

POST https://api.myshiptracking.com/api/v2/fleets/new

Parameters

Parameter Required Type Default Description
apikey (header) yes text Your API key. Pass it via the HTTP header Authorization: Bearer YOUR_API_KEY or x-api-key.
name yes string The unique name for the new fleet. Must be at least 3 characters long.
secret yes string Your secret (generated when your API key was created) used to authorize the creation of a new fleet.

Billing & Credits Details

No Charge

This endpoint is free of charge. No credits are deducted.

Response Fields

Field Type Description
status text Indicates the outcome of the request. Expected value: added on success.
fleet_id integer Unique identifier for the newly created fleet.

Response Structure

All API responses follow a standardized envelope format for consistency and ease of integration.

Success Response

On success (HTTP status code 200), the envelope includes:

  • status: "success"
  • duration: Time taken to process the request (in seconds).
  • timestamp: Server timestamp when the response was generated (ISO 8601 format).
  • data: An object containing the outcome. For this endpoint, it includes:
    • status: "added"
    • fleet_id: The unique identifier for the new fleet.

Error Response

On error, the envelope includes:

  • status: "error"
  • duration: Time taken to process the request.
  • timestamp: Server timestamp when the error was generated.
  • code: Specific error code for troubleshooting.
  • message: Detailed error message.

The response format (JSON or XML) is determined by the Accept header.

Note: When a request error occurs (such as providing an invalid secret or duplicate fleet name), no fleet is created.

Sample Success Response (JSON)

{
    "status": "success",
    "duration": "0.040946807",
    "timestamp": "2025-04-03T10:16:00.919Z",
    "data": {
        "status": "added",
        "fleet_id": "282767"
    }
}

Sample Error Response (JSON)

{
    "status": "error",
    "duration": "0.001714728",
    "timestamp": "2025-04-03T10:12:28.401Z",
    "code": "ERR_INVALID_FLEET_NAME",
    "message": "Invalid secret."
}

Possible Error Responses

The following error responses may be returned. Each error follows the standardized response envelope.

Error Code HTTP Status Description
ERR_INVALID_FLEET_NAME 400 The fleet name does not meet the minimum length requirement.
ERR_FLEET_NAME_EXISTS 400 A fleet with the specified name already exists for the user.
ERR_NO_KEY 401 No API key was provided in the request headers.
ERR_INVALID_KEY 401 The provided API key is invalid or unrecognized.
ERR_INVALID_SECRET 401 The provided secret key is invalid or unrecognized.
ERR_NOACCESS 403 The API key does not have permission to access this endpoint.
ERR_INTERNAL 500 An internal server error occurred.

Usage Examples

<?php
$apiKey = "YOUR_API_KEY";
$name   = "My New Fleet";
$secret = "YOUR_SECRET";
$url    = "https://api.myshiptracking.com/api/v2/fleets/new";

$data = [
    "name"   => $name,
    "secret" => $secret
];

$headers = [
    "Authorization: Bearer $apiKey",
    "Content-Type: application/json"
];

$ch = curl_init();
curl_setopt($ch, CURLOPT_URL, $url);
curl_setopt($ch, CURLOPT_POST, true);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
curl_setopt($ch, CURLOPT_HTTPHEADER, $headers);
curl_setopt($ch, CURLOPT_POSTFIELDS, json_encode($data));

$response = curl_exec($ch);

if(curl_errno($ch)) {
    echo 'Request Error: ' . curl_error($ch);
} else {
    echo $response;
}
curl_close($ch);
?>
curl --location 'https://api.myshiptracking.com/api/v2/fleets/new' \
--header 'authorization: Bearer YOUR_API_KEY' \
--header 'Content-Type: application/json' \
--data '{
    "name": "My New Fleet",
    "secret": "YOUR_SECRET"
}'
import requests
import json

api_key = "YOUR_API_KEY"
name    = "My New Fleet"
secret  = "YOUR_SECRET"
url     = f"https://api.myshiptracking.com/api/v2/fleets/new"

headers = {
    "Authorization": f"Bearer {api_key}",
    "Content-Type": "application/json"
}

data = {
    "name": name,
    "secret": secret
}

response = requests.post(url, headers=headers, json=data)
print(response.json())
const apiKey = "YOUR_API_KEY";
const name = "My New Fleet";
const secret = "YOUR_SECRET";
const url = `https://api.myshiptracking.com/api/v2/fleets/new`;

fetch(url, {
  method: "POST",
  headers: {
    "Authorization": `Bearer ${apiKey}`,
    "Content-Type": "application/json"
  },
  body: JSON.stringify({ name, secret })
})
.then(response => response.json())
.then(data => console.log(data))
.catch(error => console.error("Error:", error));
import java.io.BufferedReader;
import java.io.InputStreamReader;
import java.io.OutputStream;
import java.net.HttpURLConnection;
import java.net.URL;

public class FleetCreationExample {
    public static void main(String[] args) {
        try {
            String apiKey = "YOUR_API_KEY";
            String name = "My New Fleet";
            String secret = "YOUR_SECRET";
            String urlString = "https://api.myshiptracking.com/api/v2/fleets/new";
            URL url = new URL(urlString);
            HttpURLConnection conn = (HttpURLConnection) url.openConnection();
            conn.setRequestMethod("POST");
            conn.setRequestProperty("Authorization", "Bearer " + apiKey);
            conn.setRequestProperty("Content-Type", "application/json");
            conn.setDoOutput(true);

            String jsonInputString = "{\"name\": \"" + name + "\", \"secret\": \"" + secret + "\"}";
            try(OutputStream os = conn.getOutputStream()) {
                byte[] input = jsonInputString.getBytes("utf-8");
                os.write(input, 0, input.length);
            }

            int responseCode = conn.getResponseCode();
            BufferedReader br = new BufferedReader(new InputStreamReader(
                (responseCode == HttpURLConnection.HTTP_OK) ? conn.getInputStream() : conn.getErrorStream(), "utf-8"
            ));
            StringBuilder response = new StringBuilder();
            String responseLine;
            while ((responseLine = br.readLine()) != null) {
                response.append(responseLine.trim());
            }
            System.out.println(response.toString());
        } catch (Exception e) {
            e.printStackTrace();
        }
    }
}
using System;
using System.Net.Http;
using System.Net.Http.Headers;
using System.Text;
using System.Threading.Tasks;

class FleetCreationExample {
    static async Task Main() {
        string apiKey = "YOUR_API_KEY";
        string name = "My New Fleet";
        string secret = "YOUR_SECRET";
        string url = "https://api.myshiptracking.com/api/v2/fleets/new";

        using (HttpClient client = new HttpClient()) {
            client.DefaultRequestHeaders.Authorization = new AuthenticationHeaderValue("Bearer", apiKey);
            client.DefaultRequestHeaders.Add("Content-Type", "application/json");

            var json = $"{{\"name\":\"{name}\", \"secret\":\"{secret}\"}}";
            var content = new StringContent(json, Encoding.UTF8, "application/json");

            HttpResponseMessage response = await client.PostAsync(url, content);
            string result = await response.Content.ReadAsStringAsync();
            Console.WriteLine(result);
        }
    }
}
require 'net/http'
require 'uri'
require 'json'

api_key = "YOUR_API_KEY"
name = "My New Fleet"
secret = "YOUR_SECRET"
uri = URI("https://api.myshiptracking.com/api/v2/fleets/new")

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

request = Net::HTTP::Post.new(uri.request_uri, {
  'Authorization' => "Bearer #{api_key}",
  'Content-Type' => 'application/json'
})
request.body = { name: name, secret: secret }.to_json

response = http.request(request)
puts response.body

Try It Out

Request Preview

Your request preview will appear here...
                

Response

Your response will appear here...