/
Retrieve user's own profi...
- Mock serverhttps://www.rebilly.com/_mock/catalog/all/profile
- Sandbox serverhttps://api-sandbox.rebilly.com/organizations/{organizationId}/profile
- Live serverhttps://api.rebilly.com/organizations/{organizationId}/profile
- SecretApiKey
- JWT
curl -i -X GET \
https://www.rebilly.com/_mock/catalog/all/profile \
-H 'REB-APIKEY: YOUR_API_KEY_HERE'Profile retrieved.
ID of the user.
Example:"4f6cf35x-2c4y-483z-a0a9-158621f77a21"
Permissions that the user has within organizations. Use the wildcard character * for full access.
Example:
[ "PostFile", "StorefrontGetAccount", "StorefrontGetWebsite", "StorefrontGetKycDocument", "StorefrontPostKycDocument" ]
Date and time when the resource is created. This value is set automatically when the resource is created.
Date and time when the resource is updated. This value is set automatically when the resource is updated.
Array of reporting currencies that are enabled for the merchant.
User's currency code in ISO 4217 format. This value is used for reports.
User's country of residence in ISO 3166 alpha-2 country code. For examples, see ISO.org.
User preferences, such as: timezone, language, and more. This is an object with custom properties.
Specifies if the current user session has permissions emulation enabled.
Response
{ "id": "4f6cf35x-2c4y-483z-a0a9-158621f77a21", "email": "user@example.com", "firstName": "string", "lastName": "string", "businessPhone": "string", "mobilePhone": "string", "permissions": [ "PostFile", "StorefrontGetAccount", "StorefrontGetWebsite", "StorefrontGetKycDocument", "StorefrontPostKycDocument" ], "createdTime": "2019-08-24T14:15:22Z", "updatedTime": "2019-08-24T14:15:22Z", "availableCurrencies": [ "string" ], "reportingCurrency": "string", "loginTime": "2019-08-24T14:15:22Z", "status": "active", "country": "string", "preferences": {}, "hasPermissionsEmulation": true, "displayName": "string", "hash": "string", "_links": [ { … } ] }