> For the complete documentation index, see [llms.txt](https://help.plugged.io/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://help.plugged.io/plugged-cli/profiles.md).

# Profiles

Learn how to create & import profiles into Plugged CLI.

### Using AYCD

You can create your profiles using AYCD google sheet or in AYCD profile converter. Then export them to the Plugged CLI selection and copy the .json file to the profiles folder.

### Using .json File

You can use this format below to manually create your own profiles. Just edit the information to match your Shipping/Billing/Card Information.

{% hint style="danger" %}
**NOTE: Your state must be the abbreviated version.**
{% endhint %}

```
[
  {
    "name": "Example 1",
    "size": "",
    "profileGroup": "",
    "billingAddress": {
      "name": "Glennis Rugen",
      "email": "g.l.e.n.n.isrugen@gmail.com",
      "phone": "8586089035",
      "line1": "123 Cherry Street",
      "line2": "",
      "line3": "",
      "postCode": "10002",
      "city": "New York",
      "country": "United States",
      "state": "NY"
    },
    "shippingAddress": {
      "name": "Glennis Rugen",
      "email": "g.l.e.n.n.isrugen@gmail.com",
      "phone": "8586089035",
      "line1": "123 Cherry Street",
      "line2": "",
      "line3": "",
      "postCode": "10002",
      "city": "New York",
      "country": "United States",
      "state": "NY"
    },
    "paymentDetails": {
      "nameOnCard": "Glennis Rugen",
      "cardType": "Visa",
      "cardNumber": "4242424242424242",
      "cardExpMonth": "03",
      "cardExpYear": "2021",
      "cardCvv": "123"
    },
    "sameBillingAndShippingAddress": true,
    "onlyCheckoutOnce": false,
    "matchNameOnCardAndAddress": true
  },
  {
    "name": "Example 2",
    "size": "",
    "profileGroup": "",
    "billingAddress": {
      "name": "Tove Alita",
      "email": "tovealita@gmail.com",
      "phone": "8582485499",
      "line1": "123 Cherry Street",
      "line2": "",
      "line3": "",
      "postCode": "10002",
      "city": "New York",
      "country": "United States",
      "state": "NY"
    },
    "shippingAddress": {
      "name": "Tove Alita",
      "email": "tovealita@gmail.com",
      "phone": "8582485499",
      "line1": "123 Cherry Street",
      "line2": "",
      "line3": "",
      "postCode": "10002",
      "city": "New York",
      "country": "United States",
      "state": "NY"
    },
    "paymentDetails": {
      "nameOnCard": "Tove Alita",
      "cardType": "Visa",
      "cardNumber": "4242424242424242",
      "cardExpMonth": "03",
      "cardExpYear": "2021",
      "cardCvv": "123"
    },
    "sameBillingAndShippingAddress": true,
    "onlyCheckoutOnce": false,
    "matchNameOnCardAndAddress": true
  },
  {
    "name": "Example 3",
    "size": "",
    "profileGroup": "",
    "billingAddress": {
      "name": "Homer Simpson",
      "email": "homersimpson@gmail.com",
      "phone": "8587162718",
      "line1": "123 Cherry Street",
      "line2": "",
      "line3": "",
      "postCode": "10002",
      "city": "New York",
      "country": "United States",
      "state": "NY"
    },
    "shippingAddress": {
      "name": "Homer Simpson",
      "email": "homersimpson@gmail.com",
      "phone": "8587162718",
      "line1": "123 Cherry Street",
      "line2": "",
      "line3": "",
      "postCode": "10002",
      "city": "New York",
      "country": "United States",
      "state": "NY"
    },
    "paymentDetails": {
      "nameOnCard": "Homer Simpson",
      "cardType": "Visa",
      "cardNumber": "4242424242424242",
      "cardExpMonth": "03",
      "cardExpYear": "2021",
      "cardCvv": "123"
    },
    "sameBillingAndShippingAddress": true,
    "onlyCheckoutOnce": false,
    "matchNameOnCardAndAddress": true
  },
  {
    "name": "Example 4",
    "size": "",
    "profileGroup": "",
    "billingAddress": {
      "name": "Fanchette Archie",
      "email": "fa.n.c.h.e.t.t.e.a.r.c.h.i.e@gmail.com",
      "phone": "8589602391",
      "line1": "123 Cherry Street",
      "line2": "",
      "line3": "",
      "postCode": "10002",
      "city": "New York",
      "country": "United States",
      "state": "NY"
    },
    "shippingAddress": {
      "name": "Fanchette Archie",
      "email": "fa.n.c.h.e.t.t.e.a.r.c.h.i.e@gmail.com",
      "phone": "8589602391",
      "line1": "123 Cherry Street",
      "line2": "",
      "line3": "",
      "postCode": "10002",
      "city": "New York",
      "country": "United States",
      "state": "NY"
    },
    "paymentDetails": {
      "nameOnCard": "Fanchette Archie",
      "cardType": "Visa",
      "cardNumber": "4242424242424242",
      "cardExpMonth": "03",
      "cardExpYear": "2021",
      "cardCvv": "123"
    },
    "sameBillingAndShippingAddress": true,
    "onlyCheckoutOnce": false,
    "matchNameOnCardAndAddress": true
  }
]
```
