action apiz_get_user { label: "getUser" description: "This method retrieves the account profile information for an authenticated user, which requires a User access token. What is returned is controlled by the scopes. For a business account you use the default scope commerce.identity.readonly, which returns all the fields in the businessAccount container. These are returned because this is all public information. For an individual account, the fields returned in the individualAccount container are based on the scope you use. Using the default scope, only public information, such as eBay user ID, are returned. For details about what each scope returns, see the Identity API Overview. URLs for this method Production URL: https://apiz.ebay.com/commerce/identity/v1/user/ Sandbox URL: https://apiz.sandbox.ebay.com/commerce/identity/v1/user/ In the Sandbox, this method returns mock data. Note: You must use the correct scope or scopes for the data you want returned." provider: apiz method: GET path: "/user/" encoding: json output: { type: "object" description: "The type that defines the fields for the getUser method." properties: { accountType: { type: "string" description: "Indicates the user account type. This is determined when the user registers with eBay. If they register for a business account, this value will be BUSINESS. If they register for a private account, this value will be INDIVIDUAL. This designation is required by the tax laws in the following countries: EBAY_AT, EBAY_BE, EBAY_CH, EBAY_DE, EBAY_ES, EBAY_FR, EBAY_GB, EBAY_IE, EBAY_IT, EBAY_PL Valid Values: BUSINESS or INDIVIDUAL Code so that your app gracefully handles any future changes to this list. For implementation help, refer to eBay API documentation" } businessAccount: { type: "object" description: "The type that defines the fields for the business account information." properties: { address: { type: "object" description: "The type that defines the fields for an address." properties: { addressLine1: { type: "string" description: "The first line of the street address." } addressLine2: { type: "string" description: "The second line of the street address. This field is not always used, but can be used for 'Suite Number' or 'Apt Number'." } city: { type: "string" description: "The city of the address." } country: { type: "string" description: "The two-letter ISO 3166 standard of the country of the address. For implementation help, refer to eBay API documentation" } county: { type: "string" description: "The county of the address." } postalCode: { type: "string" description: "The postal code of the address." } stateOrProvince: { type: "string" description: "The state or province of the address." } } } doingBusinessAs: { type: "string" description: "An additional name that is used for their business on eBay. The business name is returned in the name field." } email: { type: "string" description: "The email address of the business account." } name: { type: "string" description: "The business name associated with the user's eBay account." } primaryContact: { type: "object" description: "The type that defines the fields for the information of the contact person for the account." properties: { firstName: { type: "string" description: "The first name of the contact person." } lastName: { type: "string" description: "The last name of the contact person." } } } primaryPhone: { type: "object" description: "The type that defines the fields for the details of a phone." properties: { countryCode: { type: "string" description: "The two-letter ISO 3166 standard of the country to which the phone number belongs." } number: { type: "string" description: "The numeric string representing the phone number." } phoneType: { type: "string" description: "The type of phone service. Valid Values: MOBILE or LAND_LINE Code so that your app gracefully handles any future changes to this list." } } } secondaryPhone: { type: "object" additionalProperties: true } website: { type: "string" description: "The business website address associated with the eBay account." } } } individualAccount: { type: "object" description: "The type that defines the fields for the information of an individual account." properties: { email: { type: "string" description: "The eBay user's registration email address." } firstName: { type: "string" description: "The eBay user's first name." } lastName: { type: "string" description: "The eBay user's last name." } primaryPhone: { type: "object" additionalProperties: true } registrationAddress: { type: "object" additionalProperties: true } secondaryPhone: { type: "object" additionalProperties: true } } } registrationMarketplaceId: { type: "string" description: "The eBay site on which the account is registered. For implementation help, refer to eBay API documentation" } status: { type: "string" description: "Indicates the user's account status. Possible values: CONFIRMED, UNCONFIRMED, ACCOUNTONHOLD and UNDETERMINED. For implementation help, refer to eBay API documentation" } userId: { type: "string" description: "The eBay immutable user ID of the user's account and can always be used to identify the user." } username: { type: "string" description: "The user name, which was specific by the user when they created the account. Note: This value can be changed by the user." } } } }