Get Sources
https://api.flxpoint.com/sourcesUse this when you want to pull source data through the API.
This page explains the endpoint. To send a live test request, use the interactive tester in Stoplight or your own Postman / HTTP client.
This endpoint will retrieve back a list of Sources for a configured account. This endpoint requires an Account level API token
Request
filterByIdsqueryarray[integer]Optionally pass a list of Source IDs to filter on. Max 50 IDs
filterFirearmsEnabledquerybooleanOptionally set this to `true` to filter sources that contain firearms. If `false` or not passed, all Sources will be returned
filterArchivedquerybooleanSet this to `false` to include archived Sources. Default is `true` so archived Sources are not returned
includeAddressquerybooleanSet this to `true` to return back the `address` on the Source
includeIntegrationsquerybooleanSet this to `true` to return back the `integrations` on the Source
includeSettingsquerybooleanSet this to `true` to return back the `settings` on the Source. This will include all available settings and not just those that have already been configured.
Example request
/sourcescurl -X GET "https://api.flxpoint.com/sources" \
-H "Accept: application/json" \
-H "X-API-TOKEN: YOUR_TOKEN"Responses
200OKapplication/json
idintegerrequirednamestringdescriptionstringinsertedAtstring (date-time)addressIdintegerrateShoppingbooleanreleaseCommittedStockOnShipmentAddedbooleandeprecatedreleaseCommittedStockOnQuantityUpdatebooleandeprecatedvendorIdintegertypeobjectidintegernamestringData SourceInternal WarehouseExternal WarehouseVendor Warehousehandlestringdata_sourceinternal_warehouseexternal_warehousevendor_warehousecurrencyobjectidintegerrequiredcodestringrequirednamestringsymbolstringunicodeDecimalstringaddressobjectidintegernamestringaddressLine1stringaddressLine2stringcitystringstatestringcountrystringstateCodestringcountryCodestringpostalstringemailstringphonestringcompanyNamestringfirstNamestringlastNamestringredactedbooleanhashstringcommitStockbooleanallowBackordersbooleanvendorobjectidintegercreatedByUserIdintegercreatedAtstring (date-time)deletedAtstring (date-time)namestringdescriptionstringportalEnabledbooleancontainsFirearmsWorkflowEventIdintegercontainsFirearmsbooleanshippingCostWorkflowEventIdintegerdropshipFeeWorkflowEventIdintegerintegrationsarray[any]settingsarray[SourceSetting]idintegerrequiredsettingobjectrequiredidintegernamestringrequiredhandlestringrequiredtypestringrequiredimgbooleantime_interval_thresholdemailstringtextselectnumberradiomultijsonvalueTypestringrequiredintegerbooleantime_interval_thresholdstringselectemaildecimalnumbermultijsonplaceholderstringdefaultValuestringdescriptionstringoptionsstringparentSettingIdintegercategoryobjectidintegerhandlestringsupplier.settingsdealer.invoice.settingsaccount.settingsnotificationsaccount.b2bchannel.settingsfeature_flagsdealer.channel.settingssource.settingsvendor.settingsnamestringsourceIdintegervaluestringrequiredinsertedAtstring (date-time)updatedAtstring (date-time)autoCreateListingsWorkflowEventIdintegerautoRebuildEnabledOnstring (date-time)autoRebuildConfirmedByUserstringautoListEnabledOnstring (date-time)autoListConfirmedByUserstringautoCreateListingsForAllInventoriesbooleanautoCreateListingsForSpecificInventoriesbooleanautoGenerateInvoiceWorkflowIdinteger[
{
"id": 0,
"name": "string",
"description": "string",
"insertedAt": "2026-04-20T00:00:00Z",
"addressId": 0,
"rateShopping": true,
"releaseCommittedStockOnShipmentAdded": true,
"releaseCommittedStockOnQuantityUpdate": true,
"vendorId": 0,
"type": {
"id": 0,
"name": "Data Source",
"handle": "data_source"
},
"currency": {
"id": 0,
"code": "string",
"name": "string",
"symbol": "string",
"unicodeDecimal": "string"
},
"address": {
"id": 0,
"name": "Joe Smith",
"addressLine1": "120 1st Lane",
"addressLine2": "Suite 123",
"city": "Jacksonville",
"state": "Florida",
"country": "United States",
"stateCode": "FL",
"countryCode": "US",
"postal": "12345",
"email": "person@example.com",
"phone": "1-555-123-4567",
"companyName": "string",
"firstName": "Joe",
"lastName": "Smith",
"redacted": true,
"hash": "string"
},
"commitStock": true,
"allowBackorders": true,
"vendor": {
"id": 0,
"createdByUserId": 0,
"createdAt": "2026-04-20T00:00:00Z",
"deletedAt": "2026-04-20T00:00:00Z",
"name": "string",
"description": "string",
"portalEnabled": true
},
"containsFirearmsWorkflowEventId": 0,
"containsFirearms": true,
"shippingCostWorkflowEventId": 0,
"dropshipFeeWorkflowEventId": 0,
"integrations": [
null
],
"settings": [
{
"id": 0,
"setting": {
"id": null,
"name": null,
"handle": null,
"type": null,
"valueType": null,
"placeholder": null,
"defaultValue": null,
"description": null,
"options": null,
"parentSettingId": null,
"category": null
},
"sourceId": 0,
"value": "string",
"insertedAt": "2026-04-20T00:00:00Z",
"updatedAt": "2026-04-20T00:00:00Z"
}
],
"autoCreateListingsWorkflowEventId": 0,
"autoRebuildEnabledOn": "2026-04-20T00:00:00Z",
"autoRebuildConfirmedByUser": "string",
"autoListEnabledOn": "2026-04-20T00:00:00Z",
"autoListConfirmedByUser": "string",
"autoCreateListingsForAllInventories": true,
"autoCreateListingsForSpecificInventories": true,
"autoGenerateInvoiceWorkflowId": 0
}
]401Unauthorized
No schema documented for this status.
OpenAPI fragment
{
"get": {
"summary": "Get Sources",
"description": "This endpoint will retrieve back a list of Sources for a configured account. This endpoint requires an Account level API token",
"parameters": [
{
"schema": {
"type": "array",
"maxItems": 50,
"example": "123,456,789",
"uniqueItems": true,
"items": {
"type": "integer"
}
},
"in": "query",
"name": "filterByIds",
"description": "Optionally pass a list of Source IDs to filter on. Max 50 IDs",
"style": "form",
"explode": false
},
{
"schema": {
"type": "boolean",
"default": false
},
"in": "query",
"name": "filterFirearmsEnabled",
"description": "Optionally set this to `true` to filter sources that contain firearms. If `false` or not passed, all Sources will be returned"
},
{
"schema": {
"type": "boolean",
"default": true
},
"in": "query",
"name": "filterArchived",
"description": "Set this to `false` to include archived Sources. Default is `true` so archived Sources are not returned"
},
{
"schema": {
"type": "boolean",
"default": false
},
"in": "query",
"name": "includeAddress",
"description": "Set this to `true` to return back the `address` on the Source"
},
{
"schema": {
"type": "boolean",
"default": false
},
"in": "query",
"name": "includeIntegrations",
"description": "Set this to `true` to return back the `integrations` on the Source"
},
{
"schema": {
"type": "boolean",
"default": false
},
"in": "query",
"name": "includeSettings",
"description": "Set this to `true` to return back the `settings` on the Source. This will include all available settings and not just those that have already been configured."
}
],
"responses": {
"200": {
"description": "OK",
"content": {
"application/json": {
"schema": {
"type": "array",
"items": {
"$ref": "#/components/schemas/Source"
}
}
}
}
},
"401": {
"description": "Unauthorized"
}
}
}
}