Get business firearms questionnaire
GEThttps://api.publicsquare.com/business/firearms-questionnaire
Get the business firearms questionnaire for the Account.
Permissions
business:read
Responses
- 200
- 400
- 401
- 403
- 404
OK
- application/json
- Schema
- Example (auto)
Schema
Business representative ID
frq_2eaN9wk5jaLJKCXKpBJYQJ6sB
Account ID
acc_B518niGwGYKzig6vtrRVZGGGV
Date firearms questionnaire was created
2024-06-30T01:02:29.212Z
Date firearms questionnaire was modified
2024-06-30T01:02:29.212Z
List of products sold by merchant (i.e. Firearms (in accordance with ATF definition), firearms parts, accessories, ammunition, explosives).
Possible values: non-empty
and <= 250 characters
Weapons and munitions
List all states that merchant ships to.
Possible values: non-empty
and <= 250 characters
TX, IA, and AL
What controls are in place to ensure proper shipment of firearms in accordance with Federal law (i.e. shipping only to licensed FFL, completing Form 1508 to ship via UPS, USPS, or Fedex, etc). It not applicable, state ‘N/A’.
Possible values: non-empty
and <= 250 characters
Form 1508 with USPS
Merchant has an active and good-standing FFL license: 'yes', 'no', or 'not_applicable'
Possible values: non-empty
yes
Federal firearms license
1-22-333-44-5X-66666
Has Merchant or any principal of company had adverse action taken against an FFL license (i.e. revocation, willful violations, etc)? 'yes' or 'no'
Possible values: non-empty
no
Description of adverse actions taken against FFL license
None
Merchant has controls in place to block/prohibit transactions & shipment outside of the United States: 'yes' or 'no'
Possible values: non-empty
yes
What controls does merchant have in place to ensure proper MCC coding and routing in accordance with state law? If not applicable, state ‘N/A’.
Possible values: non-empty
and <= 250 characters
N/A
Merchant has obtained NFA registration and registered inventory with the Bureau of Alcohol, Tobacco, Firearms and Explosives (ATF): 'yes', 'no', or 'not_applicable'
Possible values: non-empty
yes
Customers are identified via government issued identification: 'yes', 'no', or 'not_applicable'
Possible values: non-empty
yes
Reason why customer identification is not applicable
Not required by state law
Background checks are performed on all customers via NICS or state point of contact: 'yes', 'no', or 'not_applicable'
Possible values: non-empty
yes
Reason why customer background checks are not applicable
Not required by state law
Gun sales are only completed if the buyer is not a prohibited person: 'yes', 'no', or 'not_applicable'
Possible values: non-empty
yes
The prospective buyer must complete and ATF Form 4473 (Firearms Transaction Record): 'yes', 'no', or 'not_applicable'
Possible values: non-empty
yes
If yes, completed ATF Forms 4473 are retained by the dealer for a period of.
3 years
The prospective buyer will complete Form 3310.4 (Report of Multiple Sale or Other Disposition of Pistols and Revolvers) if they are an unlicensed person purchasing or acquiring two or more handguns at one time or during five consecutive business days: 'yes', 'no', or 'not_applicable'
Possible values: non-empty
yes
If yes, completed Form 3310.4 are retained by the dealer for a period of
1 year
{
"id": "frq_2eaN9wk5jaLJKCXKpBJYQJ6sB",
"account_id": "acc_B518niGwGYKzig6vtrRVZGGGV",
"created_at": "2024-06-30T01:02:29.212Z",
"modified_at": "2024-06-30T01:02:29.212Z",
"products_sold": "Weapons and munitions",
"states_shipped": "TX, IA, and AL",
"shipment_controls": "Form 1508 with USPS",
"has_federal_firearms_license": "yes",
"federal_firearms_license": "1-22-333-44-5X-66666",
"has_federal_firearms_license_adverse_actions": "no",
"federal_firearms_license_adverse_actions_reason": "None",
"has_export_controls": "yes",
"routing_controls": "N/A",
"has_nfa_registration": "yes",
"are_customers_identified": "yes",
"customers_identified_not_applicable_reason": "Not required by state law",
"are_background_checks_performed": "yes",
"background_checks_performed_not_applicable_reason": "Not required by state law",
"has_sales_only_to_non_prohibited_person": "yes",
"has_buyer_complete_atf_form_4473": "yes",
"atf_form_4473_retention_period": "3 years",
"has_buyer_complete_atf_form_33104": "yes",
"atf_form_33104_retention_period": "1 year"
}
Bad Request
- application/json
- Schema
- Example (auto)
Schema
errors objectnullable
{
"errors": {},
"type": "string",
"title": "string",
"status": 0,
"detail": "string",
"instance": "string"
}
Unauthorized
- application/json
- Schema
- Example (auto)
Schema
{
"type": "string",
"title": "string",
"status": 0,
"detail": "string",
"instance": "string"
}
Forbidden
- application/json
- Schema
- Example (auto)
Schema
{
"type": "string",
"title": "string",
"status": 0,
"detail": "string",
"instance": "string"
}
Not Found
- application/json
- Schema
- Example (auto)
Schema
{
"type": "string",
"title": "string",
"status": 0,
"detail": "string",
"instance": "string"
}
Authorization: X-API-KEY
name: X-API-KEYtype: apiKeyscopes: business:read
description: Authorization by API Key inside request's X-API-KEY headerin: header
- csharp
- curl
- dart
- go
- http
- java
- javascript
- kotlin
- c
- nodejs
- objective-c
- ocaml
- php
- powershell
- python
- r
- ruby
- rust
- shell
- swift
- HTTPCLIENT
- RESTSHARP
var client = new HttpClient();
var request = new HttpRequestMessage(HttpMethod.Get, "https://api.publicsquare.com/business/firearms-questionnaire");
request.Headers.Add("Accept", "application/json");
request.Headers.Add("X-API-KEY", "<X-API-KEY>");
var response = await client.SendAsync(request);
response.EnsureSuccessStatusCode();
Console.WriteLine(await response.Content.ReadAsStringAsync());