No results found
- Utilities
-
Accounting
- Accounting Period
- Accounting Period Lock
- All transaction statement
- Contact balance
- Currency
- Customer Payment
- Exchange Rate
- Journal
- Journal Entry
- Nominal Code
- Payment Method
- Purchase Credit
- Purchase Invoice
- Purchase Payment
- Purchase Payment Total
- Sale Payment Total
- Sales Credit
- Sales Invoice
- Sales Receipt
- Sales Receipt (deprecated)
- Supplier Payment
- Tax Code
- Contact
- Integration
-
Order
- Custom Field Metadata
- Forget Contact
- Landed Cost Estimate
- Order
- Order Acknowledgement
- Custom Field
- Order Note
- Order Row
- Order Shipping Status
- Order Status
- Order Status Update
- Order Stock Status
- Order Type
- Purchase Credit Close
- Purchase Order Close
- Sales Credit
- Sales Credit Close
- Sales Order
- Sales Order Close
- Sales Order Row
- Pricing
-
Product
- Brand
- Brightpearl Category
- Channel
- Channel brand
- Collection
- Discount contact usage
- Discount total usage
- Option
- Option Value
- Price List
- Product Primary Supplier
- Product
- Product Bundle
- Product Custom Field
- Custom Field Metadata
- Custom Field
- Product Group
- Product Identity
- Product option value
- Product Price
- Product Supplier
- Product Type
- Product Type Option Association
- Season
-
Warehouse
- Asset Value Correction
- Bundle Availability
- Default Location
- Drop-Ship Note
- Drop-Ship Note Event
- External Transfer
- Fulfilment Source
- Order fulfilment status
- Goods-In Note Correction
- Goods-In Note
- Goods Movement
- Goods-Out Note
- Goods-Out Note Event
- Internal Transfer
- Location
- Pick
- Product Availability
- Quarantine Location
- Quarantine Release
- Reservation
- Reservation Row
- Reservations
- Shipping Method
- Stock Correction
- Stock Transfer
- Warehouse
- Warehouse Defaults
- Zone
Installed Accounts (deprecated) GET
URI
https://euw1.brightpearlconnect.com/developer-tools/{DEV-REF}/installed-accounts/{APP-REF}
Description
This resource allows you to fetch the list of accounts that have installed one of your apps, along with the unsigned account tokens. This resource is only available to Brightpearl registered developers.
You must use the EU1 datacentre; this endpoint is not available in other datacentres.
The following headers are required:
brightpearl-dev-ref
: Your unique developer reference, entered when you registered.brightpearl-app-ref
: The unique reference of your app, supplied when you create the app.brightpearl-dev-token
: A base 64 encoded HMAC-SHA256 hash of your developer token, signed with your developer secret.
Deprecated: the unsigned account token is only applicable to our legacy app authentication. It is not required when using our recommended OAuth authentication mechanism.
Example
Developer 'acmewidgets' fetches the accounts that have installed their app 'autoship'.
Request URI
/developer-tools/acmewidgets/installed-accounts/autoship
Response
{
"response": [
{
"installedOn": "2014-08-21T13:29:41.000Z",
"accountCode": "outerheaven",
"unsignedAccountToken": "e073e3c8-129f-4bbe-b5fb-dddd93ebd842",
"enabled": true
},
{
"installedOn": "2014-07-23T07:09:44.000Z",
"accountCode": "topfurniture",
"unsignedAccountToken": "50fc9b6e-f279-4fd5-bb73-fef5b993782a",
"enabled": false
}
]
}