# Create a Fleet **POST /v1/Fleets** Create a Fleet Configure shared settings inherited by all Super SIMs assigned to the Fleet ## Servers - https://supersim.twilio.com: https://supersim.twilio.com () ## Authentication methods - Account sid auth token ## Parameters ### Body: application/x-www-form-urlencoded (object) - **NetworkAccessProfile** (string) The SID or unique name of the Network Access Profile that will control which cellular networks the Fleet's SIMs can connect to. - **UniqueName** (string) An application-defined string that uniquely identifies the resource. It can be used in place of the resource's `sid` in the URL to address the resource. - **DataEnabled** (boolean) Defines whether SIMs in the Fleet are capable of using 2G/3G/4G/LTE/CAT-M data connectivity. Defaults to `true`. - **DataLimit** (integer) The total data usage (download and upload combined) in Megabytes that each Super SIM assigned to the Fleet can consume during a billing period (normally one month). Value must be between 1MB (1) and 2TB (2,000,000). Defaults to 1GB (1,000). - **IpCommandsUrl** (string(uri)) The URL that will receive a webhook when a Super SIM in the Fleet is used to send an IP Command from your device to a special IP address. Your server should respond with an HTTP status code in the 200 range; any response body will be ignored. - **IpCommandsMethod** (string(http-method)) A string representing the HTTP method to use when making a request to `ip_commands_url`. Can be one of `POST` or `GET`. Defaults to `POST`. - **SmsCommandsEnabled** (boolean) Defines whether SIMs in the Fleet are capable of sending and receiving machine-to-machine SMS via Commands. Defaults to `true`. - **SmsCommandsUrl** (string(uri)) The URL that will receive a webhook when a Super SIM in the Fleet is used to send an SMS from your device to the SMS Commands number. Your server should respond with an HTTP status code in the 200 range; any response body will be ignored. - **SmsCommandsMethod** (string(http-method)) A string representing the HTTP method to use when making a request to `sms_commands_url`. Can be one of `POST` or `GET`. Defaults to `POST`. ## Responses ### 201 Created #### Headers - **Access-Control-Allow-Origin** (string) Specify the origin(s) allowed to access the resource - **Access-Control-Allow-Methods** (string) Specify the HTTP methods allowed when accessing the resource - **Access-Control-Allow-Headers** (string) Specify the headers allowed when accessing the resource - **Access-Control-Allow-Credentials** (boolean) Indicates whether the browser should include credentials - **Access-Control-Expose-Headers** (string) Headers exposed to the client #### Body: application/json (object) - **account_sid** (string | null) The SID of the [Account](https://www.twilio.com/docs/iam/api/account) that created the Fleet resource. - **sid** (string | null) The unique string that we created to identify the Fleet resource. - **unique_name** (string | null) An application-defined string that uniquely identifies the resource. It can be used in place of the resource's `sid` in the URL to address the resource. - **date_created** (string(date-time) | null) The date and time in GMT when the resource was created specified in [ISO 8601](https://en.wikipedia.org/wiki/ISO_8601) format. - **date_updated** (string(date-time) | null) The date and time in GMT when the resource was last updated specified in [ISO 8601](https://en.wikipedia.org/wiki/ISO_8601) format. - **url** (string(uri) | null) The absolute URL of the Fleet resource. - **data_enabled** (boolean | null) Defines whether SIMs in the Fleet are capable of using 2G/3G/4G/LTE/CAT-M data connectivity. Defaults to `true`. - **data_limit** (integer) The total data usage (download and upload combined) in Megabytes that each Super SIM assigned to the Fleet can consume during a billing period (normally one month). Value must be between 1MB (1) and 2TB (2,000,000). Defaults to 250MB. - **data_metering** (string) The model by which a SIMs usage is metered and billed. Defaults to `payg`. - **sms_commands_enabled** (boolean | null) Defines whether SIMs in the Fleet are capable of sending and receiving machine-to-machine SMS via Commands. Defaults to `false`. - **sms_commands_url** (string(uri) | null) The URL that will receive a webhook when a Super SIM in the Fleet is used to send an SMS from your device to the SMS Commands number. Your server should respond with an HTTP status code in the 200 range; any response body will be ignored. - **sms_commands_method** (string(http-method) | null) A string representing the HTTP method to use when making a request to `sms_commands_url`. Can be one of `POST` or `GET`. Defaults to `POST`. - **network_access_profile_sid** (string | null) The SID of the Network Access Profile that controls which cellular networks the Fleet's SIMs can connect to. - **ip_commands_url** (string(uri) | null) The URL that will receive a webhook when a Super SIM in the Fleet is used to send an IP Command from your device to a special IP address. Your server should respond with an HTTP status code in the 200 range; any response body will be ignored. - **ip_commands_method** (string(http-method) | null) A string representing the HTTP method to use when making a request to `ip_commands_url`. Can be one of `POST` or `GET`. Defaults to `POST`. [Powered by Bump.sh](https://bump.sh)