> Portal Navigation: > > - Append `.md` to any URL under `https://dev.wix.com/docs/` to get its markdown version. > - Pages are either content pages (article or reference text) or menu pages (a list of links to child pages). > - To get a menu page, truncate any URL to a parent path and append `.md` (e.g. `https://dev.wix.com/docs/sdk.md`, `https://dev.wix.com/docs/sdk/core-modules.md`). > - Top-level index of all portals: https://dev.wix.com/docs/llms.txt > - Full concatenated docs: https://dev.wix.com/docs/llms-full.txt ## Resource: Address Object Conversion Table ## Article: Address Object Conversion Table ## Article Link: https://dev.wix.com/docs/velo/apis/wix-ecom-backend/address-object-conversion-table.md ## Article Content: # Stores to eCommerce Address Object Conversion Table The eCommerce APIs use a different `address` object to the one used in the Stores APIs. Notably, fields related to contact information have been moved to an adjacent `contactDetails` object (for example, in `order.shippingInfo`). To help with conversion and migration, refer to the table below to check which fields have changed and how. Fields that remain with the same name, in the same location, and with no changes in behavior are marked with an asterisk (*). > **Note:** In the eCommerce APIs, the buyer's email is only held in the `buyerInfo` field in the order object. | Previous Address Object | New Field Location | Change | | ------------------------------------------------|--------------------------------------------------------------|-------------------| | `address.city` * | `address.city` | | `address.email` | `buyerInfo.email` | Moved to `buyerInfo` object | `address.zipCode` | `address.postalCode` | Field name | `address.country` * | `address.country` | | `address.addressLine1` * | `address.addressLine1` | | `address.addressLine2` * | `address.addressLine2` | | `address.street` | `address.streetAddress` | Field name | `address.subdivision` * | `address.subdivision` | | `address.fullName.firstName` | `contactDetails.firstName` | Moved to `contactDetails` object | `address.fullName.lastName` | `contactDetails.lastName` | Moved to `contactDetails` object | `address.phone` | `contactDetails.phone` | Moved to `contactDetails` object | `address.company` | `contactDetails.company` | Moved to `contactDetails` object | `address.vatId` | `contactDetails.vatId` | Moved to `contactDetails` object