Launch Self-Configured Device

Step 1: Authenticate

Submit your user credentials, Client ID, and Client Secret for OAuth2 authentication.

See Generating Client id and Client Secret under the Getting Access Token section for instructions to create a client ID and client secret. See Requesting Access and Refresh tokens for instructions to call the Oauth API to validate and authenticate your credentials.

If you are unaware of your user credentials, contact your local Equinix Service Desk.

Step 2: Get Device Details

  • Call Get Device Types to find out which self-configured device (e.g., router or firewall) you want to launch on the NE platform. You will learn about the metro regions where virtual devices are available, vendors of devices, the available number of cores, and the software packages and their versions. Select deviceTypeCode, metroCode, core, packageCode, and version.

  • Call Get Allowed Interfaces to find out the allowed number of interfaces for your selected core. You may select any available device interface as sshInterfaceId. Otherwise, Equinix will choose the first available interface.

  • Call Get Accounts {metro} to check your account number (or acountReferenceId) and status in the metro where you want a virtual device. For billing reasons, you must have an account in the metro where you want a virtual device, either in the Active or Pending state. Create an account if you do not have one.

    If you are a reseller trying to create a device for your customer, you must ensure that the customer's and your (reseller's) accounts are both in the Active or Pending status. Your account will get billed, however, you must send the customer's account number to the POST API to create a device for your customer.

Step 3: Licensing Options

We offer BYOL (Bring Your Own Licensing) licensing option for most devices. Upload a license file or a code/token/ID, depending on what your vendor offers. For Cisco 8KV, you have the Subscription licensing option.
  • Arista: We don't support uploading a license for Arista device. However, you can log in to your device after it is created to upload a license to increase your throughput.
  • Cisco and Palo Alto provide license tokens. Enter the license token in the licenseToken field.
  • Juniper provides license files. To bring your own license (BYOL) for a Juniper device, use Post License File to upload a license file. You will get a file ID that you can use to create a virtual device. In case you have a redundant Juniper device, you can use the same fileId for both the primary and secondary devices.
  • Fortinet: License is not mandatory for Fortinet devices at the time of device creation. If you have a token, enter it in the licenseToken field. To configure a license file for a Fortinet device, you must do the following:
    • Generate a license file on the Fortinet portal.
    • Upload the license file on the Equinix portal by calling Post License File. You'll get a fileId that you can use to create a virtual device. Log in to the device to check your license status.

Step 4: Create Self-Configured Device

POST /ne/v1/devices
MethodPOST
URL or End Point/ne/v1/devices
HeadersAuthorization token, Content-Type
Query Parametersdraft, draftUuid

Download Postman Scripts for exact payloads to create devices. Every device has its own payload, depending on the vendor of the device.

If you wish to create a redundant device that has primary and secondary devices, do the following:

  • Set parameters of the secondary object
  • If you are a reseller trying to create a redundant device for your customer, make sure both the primary and secondary metros are in the same country. Both the primary and secondary account numbers must be the same. Although the reseller's account will get billed, this API accepts the customer's account number to create devices for the customer. The above restrictions are necessary as each customer is associated with a reseller's billing account.
  • In the case of Cisco FTD devices, the management type for both the primary and the secondary devices must be the same.

Note: By creating a virtual device, you accept the Order Terms. Call Get Order Terms to review the details. Check Creating a Self-Configured Edge Device to understand the business details.

To obtain an authorization token, refer to Requesting Access and Refresh tokens under the Getting Access Token section.

To save a device draft, you must provide deviceTypeCode, accountNumber/accountReferenceId, and metroCode.

A sample curl request to create a self-configured device.

Copy
curl -X
POST "https://api.equinix.com/ne/v1/devices?draft=false"
-H "content-type: application/json"
-H "Authorization: Bearer jnSoUKaJHpzMnU0toROpUHmqnwEP"
-d '
{
    "metroCode": "SV",
    "deviceTypeCode": "VSRX",
    "agreeOrderTerms": true,
    "termLength": "1",
    "licenseMode": "BYOL",
    "packageCode": "STD",
    "virtualDeviceName": "Test-device-001-SROY",
    "notifications": [
        "test@equinix.com"
    ],
    "hostNamePrefix": "TC12",
    "aclDetails": [
        {
            "uuid": "fb2e69bb-cbd7-40c4-bc01-8bcc5fa741c2",
            "interfaceType": "WAN"
        }
    ],
    "accountNumber": "200541",
    "version": "18.4R2-S1.4",
    "interfaceCount": 10,
    "deviceManagementType": "SELF-CONFIGURED",
    "core": 5,
    "userPublicKey": {
        "username": "userName",
        "keyName": "keyName"
    },
    "additionalBandwidth": "100"
}
'

A sample curl request to create a redundant device.

Copy
curl -X
POST "https://api.equinix.com/ne/v1/devices?draft=false"
-H "content-type: application/json"
-H "Authorization: Bearer jnSoUKaJHpzMnU0toROpUHmqnwEP"
-d '
{
    "metroCode": "DC",
    "deviceTypeCode": "C8000V",
    "agreeOrderTerms": true,
    "termLength": "1",
    "licenseMode": "BYOL",
    "packageCode": "network-advantage",
    "virtualDeviceName": "Test-device-002-SROY",
    "notifications": [
        "test@equinix.com"
    ],
    "hostNamePrefix": "TC01",
        "aclDetails": [
        {
            "uuid": "fb2e69bb-cbd7-40c4-bc01-8bcc5fa741c2",
            "interfaceType": "WAN"
        }
    ],
    "accountNumber": "201148",
    "version": "17.06.01a",
    "interfaceCount": 10,
    "deviceManagementType": "SELF-CONFIGURED",
    "core": 2,
    "userPublicKey": {
        "username": "sroy",
        "keyName": "keyWIQzB"
    },
    "sshInterfaceId": "3",
    "channelPartner": "SDCI",
    "secondary": {
        "metroCode": "DC",
        "hostNamePrefix": "TC02",
        "notifications": [
            "test@equinix.com"
        ],
        "virtualDeviceName": "Test-device-001-SROY - secondary",
        "additionalBandwidth": "100",
            "aclDetails": [
        {
            "uuid": "fb2e69bb-cbd7-40c4-bc01-8bcc5fa741c2",
            "interfaceType": "WAN"
        }
    ],
        "accountNumber": "201148",
        "sshInterfaceId": "4"
    },
    "additionalBandwidth": "100"
}
'

A sample curl request to create a Cisco FTD secondary device with no internet access.

Copy
curl -X
POST "https://api.equinix.com/ne/v1/devices?draft=false"
-H "content-type: application/json"
-H "Authorization: Bearer jnSoUKaJHpzMnU0toROpUHmqnwEP"
-d '
{
    "deviceTypeCode": "Cisco_NGFW",
    "licenseMode": "BYOL",
    "packageCode": "FTDv5",
    "virtualDeviceName": "NEAut-",
    "metroCode": "#(supportedMetro)",
    "notifications": [
        "t@t.com"
    ],
    "hostNamePrefix": "test",
    "interfaceCount": 10,
    "deviceManagementType": "SELF-CONFIGURED",
    "core": 4,
    "version": "7.0.4-55",
    "vendorConfig": {
        "managementType": "FDM"
    },
    "connectivity": "PRIVATE",
    "secondary": {
        "hostNamePrefix": "test-123",
        "metroCode": "#(supportedMetroForSec)",
        "notifications": [
            "t@t.com"
        ],
        "virtualDeviceName": "test-secondary",
        "vendorConfig": {
            "managementType": "FDM"
        }
    }
}
'

Query parameters:

Query Parameter NameMandatoryTypeExamplePossible ValuesDescription
draftNobooleanFalseTrue, FalseDefault=false. To save a draft, set draft=true. You must provide deviceTypeCode, accountNumber/accountReferenceId, and metroCode to save a draft. sshUsers will not be saved for drafts. Also, this API will not do access-control list validation when you save a draft.
draftUuidNostringec68e425-f973-452e-a866-76be5844d0baTo create a device from a draft you saved earlier, provide the unique Id of the draft (draftUuid).

Body parameters:

Body Parameter NameMandatoryTypeExamplePossible ValuesDescription
deviceTypeCodeYesstringC8000VVirtual device type (device type code).
diverseFromDeviceUuidNostring4cfb5675-5c3f-4275-adba-0c9e3c26c96bUnique Id of an existing device. Use this field to let Equinix know if you want your new device to be in a different location from any existing virtual device. This field is only meaningful for single devices.
accountNumberConditionalstring10478397Account number. Either an account number or an account referenceId is required to create a virtual device. Note to resellers creating a device for a customer: Your (reseller's) account will get billed, however, you must send the customer's account number to this API to create a device for your customer.
accountReferenceIdConditionalstring791281Account reference Id. This is a temporary ID that can be used to create a device when your account is still pending, not active. Either an account number or an account referenceId is required to create a virtual device.
projectIdConditionalstringXXXXXX

Customer project Id. Provide the projectId you get from Resource Management on Equinix portal. You should have access to a project to see or create assets under it.

Equinix will assign a projectId if you do not provide one.

agreeOrderTermsYesbooleantrueTo create a device, you must agree to the order terms. See Get Order Terms to review the details. If you are creating an Equinix-Configured device, read your vendor's terms by calling Get Vendor Terms.
hostNamePrefixYesstringmySRHost name for identification. This gets included as FQDN and ensures the device is reachable from the approved sources. Only a-z, A-Z, 0-9, and hyphen(-) are allowed. It should start with a letter and end with a letter or digit. The length should be between 2-30 characters. Exceptions - FTDv 2-14; Aruba 2-24.
virtualDeviceNameYesstringCiscoSTROYThe virtual device name for identification. This should be a minimum of 3 and a maximum of 50 characters long.
orderingContactNostringsubuser01Username of a reseller's customer. This field is mandatory in case a reseller is ordering a device for one of its customers. This contact will receive order and cancellation notifications.
licenseCategoryNostringflexflex, classicThis field is not necessary and will be deprecated in the future.
licenseTokenConditionalstring4567890License token. Some devices require a token. Check the payloads of individual devices (provided as Postman Scripts) for details).
licenseFileIdConditionalstring4cfb5675-5c3f-4275-adba-0c9e3c26c96bSome devices require a licenseFileId. You must first upload the license file using the Post License method to get a licenseFileId. Check the payloads of individual devices (provided as Postman Scripts) for details.
throughputNointeger10015, 25, 50, 100, 250, 500, 1000, 2500, 5000, 10,000Numeric throughput. For Cisco8KV devices: You can provide either numeric or tier throughput for the BYOL licensing option. For Subscription licensing option, you can only choose tier.
thoughputUnitNostringMbps For Cisco8KV devices: You can provide either numeric or tier throughput for the BYOL licensing option. For Subscription licensing option, you can only choose tier.
tierNointeger2 0,1,2,3 (Default - 2)Tier throughput. For Cisco8KV devices: You can provide either numeric or tier throughput for the BYOL licensing option. For Subscription licensing option, you can only choose tier. Default - 2
metroCodeYesstringSVMetro code. You may provide two different metros if you are creating a redundant device. However, both metros must be in the same country if you are a reseller trying to create a device for your customer. This restriction is necessary as a customer is associated with a reseller's billing account.
notificationsYesarraytest1@example.comEmail addresses for device life-cycle notification. We need a minimum of 1 and no more than 5 email addresses. You may have a different notification list for your secondary device if you are creating a redundant device.
packageCodeYesstringVM100Software package code.
versionYesstring16.09.03Version.
termLengthNointeger241, 12, 24, 36Billing term length in months.
aclDetailsYesarray"aclDetails": [
{
"uuid":"fb2e69bb-cbd7-40c4-bc01-8bcc5fa741c2",
"interfaceType": "WAN"
}
]
An array of ACLs.This helps set up accessibility. You can create ACLs by calling Create ACL Template.
aclDetails.uuidYesstring39289456-a63e-47d4-927c-5161cfb77500The template Id of an ACL template created using Create ACL Template.
aclDetails.interfaceTypeYesstringWANInterface type, either WAN or MGMT. Only some device types support MGMT interface ACLs. NGINX supports only MGMT interface ACL.
purchaseOrderNumberNostring3456789Purchase order number. Purchase order information will be included in your order confirmation email.
orderReferenceNostring645678AEnter a short name/number to identify this order on the invoice.
additionalBandwidthNointeger100Additional bandwidth. You may have a different additional bandwidth for your secondary device in case you have a redundant device.
deviceManagementTypeYesstringSELF-CONFIGUREDWhether the device is managed by Equinix or self-configured. This use case addresses SELF-CONFIGURED devices.
coreYesinteger4The number of cores.
interfaceCountNointeger24Interface count. To find out the allowed number of interfaces for your selected core, call Get Allowed Interfaces.
userPublicKeyYesobject"userPublicKey": {
"username":"sroy",
"keyName":"keyName"
}
An object containing the username and keyName. This helps set up accessibility.
userPublicKey.usernameYesstringsroyUsername.
userPublicKey.keyNameNostringkeyNameThis field is not mandatory. If you choose to provide a keyName, make sure it is an existing keyName associated with an existing keyValue. To set up a new keyName and keyValue pair, call Create Public Key
sshIntefaceIdNostring3You may specify any available device interface as the sshInterfaceId. To find out the available interfaces, call Get Allowed Interfaces.
smartLicenseUrlNostringhttps://www.equinix.comLicense URL. This field is only relevant for Cisco ASAv devices.
vendorConfigConditionalobjectAn object that has vendor-specific parameters. This is not required for most devices.
vendorConfig.managementTypeConditionalstringFMCThis is required for Cisco FTD Firewall devices. If you choose "FMC," you must also provide the controller IP and the activationKey.
vendorConfig.controller1Conditionalstring1.1.1.1The IP address of the controller. This field is relevant if you have chosen the "FMC" management type (Cisco FTD devices).
vendorConfig.activationKeyConditionalstring454454The activation key. This field is relevant if you have chosen the "FMC" management type (Cisco FTD devices).
vendorConfig.userNameConditionalstringsr1user12This field is relevant for Prosimo devices.
vendorConfig.connectToCloudVisionConditionalbooleantrueOnly relevant for Arista devices. A "true" value connects your Arista device to Cloud Vision.
vendorConfig.cvpTypeConditionalstringAs-a-ServiceOnly relevant for Arista devices. Possible values: As-a-Service or On-Premise.
vendorConfig.cvpFqdnConditionalstringwww.NetworkSolutions.comFully qualified domain name for Cloud Vision As-a-Service. Only relevant for Arista devices. CvpFqdn is required if connectToCloudVision=true and cvpType=As-a-Service.
vendorConfig.cvpIpAddressConditionalstring192.168.0.10Only relevant for Arista devices. CvpIpAddress is required if connectToCloudVision=true and cvpType=On-Premise.
vendorConfig.cvaasPortConditionalstring443Only relevant for Arista devices. CvaasPort is required if connectToCloudVision=true and cvpType=As-a-Service.
vendorConfig.cvpPortConditionalstring443Only relevant for Arista devices. CvpPort is required if connectToCloudVision=true and cvpType=On-Premise.
vendorConfig.cvpTokenConditionalstring123Only relevant for Arista devices. CvpToken is required if connectToCloudVision=true and (cvpType=On-Premise or cvpType=As-a-Service).
vendorConfig.provisioningKeyConditionalstringsampleKeyRelevant for Zscaler devices.
vendorConfig.privateAddressNostring192.168.20.32Private address. Relevant for BlueCat devices.
vendorConfig.privateCidrMaskNostring24Private CIDR Mask. Relevant for BlueCat devices.
vendorConfig.privateGatewayNostring192.168.20.1Private gateway. Relevant for BlueCat devices.
vendorConfig.licenseIdNostring000000123457777License Id. Relevant for BlueCat devices.
vendorConfig.panoramaIpAddressNostring1.1.1.1IP address of the Panorama controller. Provide this value to have Panorama integration. Relevant for Palo Alto Self-Configured devices with Internet Access
vendorConfig.panoramaAuthKeyNostring123456This key supports secure onboarding of the Palo Alto firewall devices. Provide this value to have Panorama integration. Relevant for Palo Alto Self-Configured devices with Internet Access.
channelPartnerNostringSDCIThe name of the channel partner.
cloudInitFileIdConditionalstring2d732d49-7a00-4839-aeca-8a2ff89da691A required parameter to create an Aviatrix device. Upload your bootstrap config file generated from the Aviatrix Conroller portal using the Upload File API. You will get a unique Id in response that you can submit as cloudInitFileId to create an Aviatrix device.
ipTypeNostringSTATICSTATICThis field is deprecated. The value always defaults to STATIC.
connectivityNostringINTERNET-ACCESSINTERNET-ACCESS, PRIVATE, INTERNET-ACCESS-WITH-PRVT-MGMTSpecifies the type of connectivity on the device. Default is INTERNET-ACCESS. A PRIVATE device will not have ACLs or bandwidth.
secondaryNoobjectsecondary{}The object containing the optional secondary device details to create a redundant device.

Note: "aclTemplateUuid" field is deprecated. Please use "aclDetails" instead.

Sample response for a single device.
202: Request accepted.

Copy
{
    "uuid": "74d8c6b6-3153-4271-9f0e-45bdc7094dec"
}

Sample response for a redundant device.
202: Request accepted.

Copy
{
    "uuid": "74d8c6b6-3153-4271-9f0e-45bdc7094dec",
    "secondaryUuid": "de5cf79b-3d16-4ccd-841b-3b68ecda2142"
}

Response payload:

FieldTypeExample ValuesDescription
uuidstringb43ba509-a7d9-4334-8dee-dc4f29bf2e77Unique identifier of the self-configured virtual device.
secondaryUuidstring92c2e49d-2c35-432d-a9af-016920bef70cUnique identifier of the secondary self-configured virtual device.

Monitor the status of your device by calling Get Virtual Device {uuid}. Your device must be provisioned and your license must be registered before you can connect to cloud service providers.

Virtual device "status" Description
INITIALIZINGEquinix is in the process of reserving resources and creating the device.
PROVISIONINGThe device is booting.
PENDING_ORDERThe order has come to NE from Siebel. Customers need to log in to the NE portal and submit the order.
PENDING_SIGNATUREThe customer has signed up for the offline acceptance of NE terms but has not yet accepted the terms.
CANCEL_ORDERThe order from Siebel to NE is canceled.
WAITING_FOR_PRIMARYThe secondary device is ready but the primary is not. This state might appear only if you have created a secondary device for redundancy.
WAITING_FOR_SECONDARYThe primary device is ready but the secondary is not. This state might appear only if you have created a secondary device for redundancy.
FAILEDThe device creation failed.
PROVISIONEDThe device is ready.

When end-users delete a device using the Delete Virtual Devices API, the device transitions through the following states within the Equinix infrastructure.

Virtual device "status" under /ne/v1/devices/{uuid}Description
DEPROVISIONINGEquinix accepted the customer's request to delete a virtual device.
DEPROVISIONEDThe device is de-provisioned/deleted.