swagger: "2.0" info: version: 0.2.0 title: "sf-gate" description: "Customer Information Microservice" termsOfService: "http://taxnexus.net/terms/" contact: email: "noc@taxnexus.net" license: name: "Proprietary - Copyright (c) 2018-2021 by Taxnexus, Inc." securityDefinitions: ApiKeyAuth: type: "apiKey" in: "header" name: "X-API-Key" schemes: - "https" basePath: "/vk/sf-gate/v1" host: "gw.tnxs.net" consumes: - "application/json" produces: - "application/json" parameters: accountIdQuery: description: Record Id of an Account in: query name: accountId required: false type: string industryCompanyIdQuery: description: Record Id of an IndustryCompany in: query name: industryCompanyId required: false type: string accountRequest: description: A request with an array of Account Objects in: body name: accountRequest required: true schema: $ref: "#/definitions/AccountRequest" industryCompanyRequest: description: A request with an array of IndustryCompany Objects in: body name: industryCompanyRequest required: true schema: $ref: "#/definitions/IndustryCompanyRequest" topicRequest: description: A request with an array of Topic Objects in: body name: topicRequest required: true schema: $ref: "#/definitions/TopicRequest" activeQuery: description: Only retrieve active records? in: query name: active required: false type: boolean apiKeyQuery: description: Id of the User to be retrieved in: query name: apikey required: false type: string assetIdQuery: description: Record Id of an Asset in: query name: assetId required: false type: string assetRequest: description: An array of new Asset records in: body name: assetRequest required: true schema: $ref: "#/definitions/AssetRequest" clusterIdQuery: description: Record Id of a Cluster in: query name: clusterId required: false type: string clusterRequest: description: An array of Cluster records in: body name: ClusterRequest required: true schema: $ref: "#/definitions/ClusterRequest" companyProductIdQuery: description: CompanyProduct record ID in: query name: companyProductId required: false type: string companyProductRequest: description: An array of new Contact records in: body name: contactRequest required: true schema: $ref: "#/definitions/CompanyProductRequest" contactIdQuery: description: Record Id of a Contact in: query name: contactId required: false type: string contactRequest: description: An array of new Contact records in: body name: contactRequest required: true schema: $ref: "#/definitions/ContactRequest" contractIdQuery: description: Contact record ID in: query name: contractId required: false type: string contractRequest: description: An array of new Contract records in: body name: contractsRequest required: true schema: $ref: "#/definitions/ContractRequest" databaseIdQuery: description: Record Id of a Database in: query name: databaseId required: false type: string databaseRequest: description: An array of Database records in: body name: DatabaseRequest required: true schema: $ref: "#/definitions/DatabaseRequest" emailQuery: description: Email address used for identity lookup in: query name: email required: false type: string factorIdQuery: description: Record Id of a Factor in: query name: factorId required: false type: string factorRequest: description: A request with an array of Factor Objects in: body name: factorRequest required: true schema: $ref: "#/definitions/FactorRequest" financialStatementIdQuery: description: Record Id of a FinancialStatement in: query name: financialStatementId required: false type: string financialStatementRequest: description: A request with an array of FinancialStatement Objects in: body name: financialStatementRequest required: true schema: $ref: "#/definitions/FinancialStatement" industryIdQuery: description: Industry record ID in: query name: industryId required: false type: string industryProductIdQuery: description: IndustryProduct record ID in: query name: industryProductId required: false type: string industryProductRequest: description: An array of new Industry records in: body name: industryRequest required: true schema: $ref: "#/definitions/IndustryProductRequest" industryRequest: description: An array of new Industry records in: body name: industryRequest required: true schema: $ref: "#/definitions/IndustryRequest" limitQuery: description: How many objects to return at one time format: int64 in: query name: limit required: false type: integer nameQuery: description: The Name of this Object in: query name: name required: false type: string newUserRequest: description: A single new user record in: body name: UserRequest required: true schema: $ref: "#/definitions/UserRequest" observationIdQuery: description: Record Id of an Observation in: query name: observationId required: false type: string observationRequest: description: A request with an array of Observation Objects in: body name: accountRequest required: true schema: $ref: "#/definitions/ObservationRequest" offsetQuery: description: How many objects to skip? format: int64 in: query name: offset required: false type: integer roleIdQuery: description: Id of the Role to be retrieved in: query name: roleId required: false type: string templateIdQuery: description: Record Id of a Template in: query name: templateId required: false type: string tenantIdQuery: description: Record Id of a Tenant in: query name: tenantId required: false type: string tenantRequest: description: An array of Tenant records in: body name: CTenantRequest required: true schema: $ref: "#/definitions/TenantRequest" toipicRequest: description: A request with an array of Topic Objects in: body name: topicRequest required: true schema: $ref: "#/definitions/TopicRequest" topicIdQuery: description: Record Id of a Topic in: query name: topicId required: false type: string userIdQuery: description: Id of the User to be retrieved in: query name: userId required: false type: string responses: AccessForbidden: description: Access forbidden, account lacks access headers: Access-Control-Allow-Origin: type: string schema: $ref: "#/definitions/Error" AccountResponse: description: Response with Account objects schema: $ref: "#/definitions/AccountResponse" IndustryCompanyResponse: description: Response with IndustryCompany objects schema: $ref: "#/definitions/IndustryCompanyResponse" AssetResponse: description: Response with Asset objects schema: $ref: "#/definitions/AssetResponse" ClusterResponse: description: Response with Cluster objects schema: $ref: "#/definitions/ClusterResponse" CompanyProductResponse: description: Response with an array of CompanyProduct objects schema: $ref: "#/definitions/CompanyProductResponse" ContactResponse: description: Response with Contact objects schema: $ref: "#/definitions/ContactResponse" ContractResponse: description: Response with an array of Contract objects schema: $ref: "#/definitions/ContractResponse" DatabaseResponse: description: Response with Database objects schema: $ref: "#/definitions/DatabaseResponse" DeleteResponse: description: Response with Message Objects with Delete Status headers: Access-Control-Allow-Origin: type: string schema: $ref: "#/definitions/DeleteResponse" FactorResponse: description: Response with Factor objects schema: $ref: "#/definitions/FactorResponse" FinancialStatementResponse: description: Response with FinancialStatement objects schema: $ref: "#/definitions/FinancialStatementResponse" IndustryProductResponse: description: Response with Industry objects schema: $ref: "#/definitions/IndustryProductResponse" IndustryResponse: description: Response with Industry objects schema: $ref: "#/definitions/IndustryResponse" InvalidDataError: description: Invalid data was sent headers: Access-Control-Allow-Origin: type: string schema: $ref: "#/definitions/InvalidError" NotFound: description: Resource was not found headers: Access-Control-Allow-Origin: type: string schema: $ref: "#/definitions/Error" ObservationResponse: description: Response with Observation objects schema: $ref: "#/definitions/ObservationResponse" RoleResponse: description: Response with Role objects schema: $ref: "#/definitions/RoleResponse" SalesforcePostResponse: description: Response from Salesforce schema: $ref: "#/definitions/SalesforcePostResponse" ServerError: description: Server Internal Error headers: Access-Control-Allow-Origin: type: string schema: $ref: "#/definitions/Error" TemplateResponse: description: Response with Template objects schema: $ref: "#/definitions/TemplateResponse" TenantResponse: description: Response with Tenant objects schema: $ref: "#/definitions/TenantResponse" TopicResponse: description: Response with Topic objects schema: $ref: "#/definitions/TopicResponse" Unauthorized: description: Access unauthorized, invalid API-KEY was used headers: Access-Control-Allow-Origin: type: string schema: $ref: "#/definitions/Error" UnprocessableEntity: description: Unprocessable Entity, likely a bad parameter headers: Access-Control-Allow-Origin: type: string schema: $ref: "#/definitions/Error" UserResponse: description: Response with User objects schema: $ref: "#/definitions/UserResponse" paths: /accounts: delete: description: Delete Account record operationId: deleteAccount parameters: - $ref: "#/parameters/accountIdQuery" responses: "200": $ref: "#/responses/DeleteResponse" "401": $ref: "#/responses/Unauthorized" "403": $ref: "#/responses/AccessForbidden" "404": $ref: "#/responses/NotFound" "422": $ref: "#/responses/UnprocessableEntity" "500": $ref: "#/responses/ServerError" security: - ApiKeyAuth: [] summary: Delete An Account tags: - Accounts get: description: Return a list of all available Accounts operationId: getAccounts parameters: - $ref: "#/parameters/limitQuery" - $ref: "#/parameters/nameQuery" - $ref: "#/parameters/offsetQuery" - $ref: "#/parameters/activeQuery" - $ref: "#/parameters/accountIdQuery" - $ref: "#/parameters/emailQuery" responses: "200": $ref: "#/responses/AccountResponse" "401": $ref: "#/responses/Unauthorized" "403": $ref: "#/responses/AccessForbidden" "404": $ref: "#/responses/NotFound" "422": $ref: "#/responses/UnprocessableEntity" "500": $ref: "#/responses/ServerError" security: - ApiKeyAuth: [] summary: Get a list of accounts tags: - Accounts post: description: Account record to be added operationId: postAccounts parameters: - $ref: "#/parameters/accountRequest" responses: "201": $ref: "#/responses/SalesforcePostResponse" "401": $ref: "#/responses/Unauthorized" "403": $ref: "#/responses/AccessForbidden" "404": $ref: "#/responses/NotFound" "422": $ref: "#/responses/UnprocessableEntity" "500": $ref: "#/responses/ServerError" security: - ApiKeyAuth: [] summary: Add a new account to Taxnexus tags: - Accounts put: description: Update one or more accounts specified by accountId operationId: putAccounts parameters: - $ref: "#/parameters/accountRequest" responses: "200": $ref: "#/responses/AccountResponse" "401": $ref: "#/responses/Unauthorized" "403": $ref: "#/responses/AccessForbidden" "404": $ref: "#/responses/NotFound" "422": $ref: "#/responses/UnprocessableEntity" "500": $ref: "#/responses/ServerError" security: - ApiKeyAuth: [] summary: Update a single account tags: - Accounts /assets: get: description: Return a list of all available Assets operationId: getAssets parameters: - $ref: "#/parameters/limitQuery" - $ref: "#/parameters/offsetQuery" - $ref: "#/parameters/activeQuery" - $ref: "#/parameters/assetIdQuery" responses: "200": $ref: "#/responses/AssetResponse" "401": $ref: "#/responses/Unauthorized" "403": $ref: "#/responses/AccessForbidden" "404": $ref: "#/responses/NotFound" "422": $ref: "#/responses/UnprocessableEntity" "500": $ref: "#/responses/ServerError" security: - ApiKeyAuth: [] summary: Get a list of assets tags: - Assets post: description: Industry record to be added operationId: postAssets parameters: - $ref: "#/parameters/assetRequest" responses: "201": $ref: "#/responses/SalesforcePostResponse" "401": $ref: "#/responses/Unauthorized" "403": $ref: "#/responses/AccessForbidden" "404": $ref: "#/responses/NotFound" "422": $ref: "#/responses/UnprocessableEntity" "500": $ref: "#/responses/ServerError" security: - ApiKeyAuth: [] summary: Add a new asset to Taxnexus tags: - Assets /clusters: get: description: Return a list of Cluster records from the datastore operationId: getClusters parameters: - $ref: "#/parameters/clusterIdQuery" - $ref: "#/parameters/limitQuery" - $ref: "#/parameters/offsetQuery" responses: "200": $ref: "#/responses/ClusterResponse" "401": $ref: "#/responses/Unauthorized" "403": $ref: "#/responses/AccessForbidden" "404": $ref: "#/responses/NotFound" "422": $ref: "#/responses/UnprocessableEntity" "500": $ref: "#/responses/ServerError" security: - ApiKeyAuth: [] summary: Get a list Clusters tags: - Clusters post: description: Create Clusters in Salesforce operationId: postClusters parameters: - $ref: "#/parameters/clusterRequest" responses: "201": $ref: "#/responses/SalesforcePostResponse" "401": $ref: "#/responses/Unauthorized" "403": $ref: "#/responses/AccessForbidden" "404": $ref: "#/responses/NotFound" "422": $ref: "#/responses/UnprocessableEntity" "500": $ref: "#/responses/ServerError" security: - ApiKeyAuth: [] summary: Create new Clusters tags: - Clusters put: description: Update Cluster in Salesforce operationId: putClusters parameters: - $ref: "#/parameters/clusterRequest" responses: "200": $ref: "#/responses/ClusterResponse" "401": $ref: "#/responses/Unauthorized" "403": $ref: "#/responses/AccessForbidden" "404": $ref: "#/responses/NotFound" "422": $ref: "#/responses/UnprocessableEntity" "500": $ref: "#/responses/ServerError" security: - ApiKeyAuth: [] summary: Update Clusters tags: - Clusters /companyproducts: get: description: Return a list of all available CompanyProducts operationId: getCompanyProducts parameters: - $ref: "#/parameters/limitQuery" - $ref: "#/parameters/offsetQuery" - $ref: "#/parameters/activeQuery" - $ref: "#/parameters/companyProductIdQuery" responses: "200": $ref: "#/responses/CompanyProductResponse" "401": $ref: "#/responses/Unauthorized" "403": $ref: "#/responses/AccessForbidden" "404": $ref: "#/responses/NotFound" "422": $ref: "#/responses/UnprocessableEntity" "500": $ref: "#/responses/ServerError" security: - ApiKeyAuth: [] summary: Get a list of companyproducts tags: - CompanyProducts post: description: Industry record to be added operationId: postCompanyProducts parameters: - $ref: "#/parameters/companyProductRequest" responses: "201": $ref: "#/responses/SalesforcePostResponse" "401": $ref: "#/responses/Unauthorized" "403": $ref: "#/responses/AccessForbidden" "404": $ref: "#/responses/NotFound" "422": $ref: "#/responses/UnprocessableEntity" "500": $ref: "#/responses/ServerError" security: - ApiKeyAuth: [] summary: Add a new companyproduct to Taxnexus tags: - CompanyProducts /contacts: delete: description: Delete Contact record from Salesforce operationId: deleteContacts parameters: - $ref: "#/parameters/contactIdQuery" responses: "200": $ref: "#/responses/ContactResponse" "401": $ref: "#/responses/Unauthorized" "403": $ref: "#/responses/AccessForbidden" "404": $ref: "#/responses/NotFound" "422": $ref: "#/responses/UnprocessableEntity" "500": $ref: "#/responses/ServerError" security: - ApiKeyAuth: [] summary: Delete a Contact record tags: - Contacts get: description: Retrieve Contact records from Salesforce operationId: getContacts parameters: - $ref: "#/parameters/contactIdQuery" - $ref: "#/parameters/limitQuery" - $ref: "#/parameters/nameQuery" - $ref: "#/parameters/offsetQuery" - $ref: "#/parameters/activeQuery" - $ref: "#/parameters/accountIdQuery" - $ref: "#/parameters/emailQuery" responses: "200": $ref: "#/responses/ContactResponse" "401": $ref: "#/responses/Unauthorized" "403": $ref: "#/responses/AccessForbidden" "404": $ref: "#/responses/NotFound" "422": $ref: "#/responses/UnprocessableEntity" "500": $ref: "#/responses/ServerError" security: - ApiKeyAuth: [] summary: Get a Contact record tags: - Contacts post: description: Contacts record to be added operationId: postContacts parameters: - $ref: "#/parameters/contactRequest" responses: "201": $ref: "#/responses/SalesforcePostResponse" "401": $ref: "#/responses/Unauthorized" "403": $ref: "#/responses/AccessForbidden" "404": $ref: "#/responses/NotFound" "500": $ref: "#/responses/ServerError" security: - ApiKeyAuth: [] summary: Add a new Contacts to Taxnexus tags: - Contacts put: description: Update Contact records in Salesforce operationId: putContacts parameters: - $ref: "#/parameters/contactRequest" responses: "200": $ref: "#/responses/ContactResponse" "401": $ref: "#/responses/Unauthorized" "403": $ref: "#/responses/AccessForbidden" "404": $ref: "#/responses/NotFound" "422": $ref: "#/responses/UnprocessableEntity" "500": $ref: "#/responses/ServerError" security: - ApiKeyAuth: [] summary: Update a Contact record tags: - Contacts /contracts: get: description: Return a list of all available Contracts operationId: getContracts parameters: - $ref: "#/parameters/limitQuery" - $ref: "#/parameters/offsetQuery" - $ref: "#/parameters/activeQuery" - $ref: "#/parameters/contractIdQuery" responses: "200": $ref: "#/responses/ContractResponse" "401": $ref: "#/responses/Unauthorized" "403": $ref: "#/responses/AccessForbidden" "404": $ref: "#/responses/NotFound" "422": $ref: "#/responses/UnprocessableEntity" "500": $ref: "#/responses/ServerError" security: - ApiKeyAuth: [] summary: Get a list of contracts tags: - Contracts /databases: get: description: Return a list of Database records from the datastore operationId: getDatabases parameters: - $ref: "#/parameters/databaseIdQuery" - $ref: "#/parameters/limitQuery" - $ref: "#/parameters/offsetQuery" responses: "200": $ref: "#/responses/DatabaseResponse" "401": $ref: "#/responses/Unauthorized" "403": $ref: "#/responses/AccessForbidden" "404": $ref: "#/responses/NotFound" "422": $ref: "#/responses/UnprocessableEntity" "500": $ref: "#/responses/ServerError" security: - ApiKeyAuth: [] summary: Get a list Databases tags: - Databases post: description: Create Databases in Salesforce operationId: postDatabases parameters: - $ref: "#/parameters/databaseRequest" responses: "201": $ref: "#/responses/SalesforcePostResponse" "401": $ref: "#/responses/Unauthorized" "403": $ref: "#/responses/AccessForbidden" "404": $ref: "#/responses/NotFound" "422": $ref: "#/responses/UnprocessableEntity" "500": $ref: "#/responses/ServerError" security: - ApiKeyAuth: [] summary: Create new Databases tags: - Databases put: description: Update Database in Salesforce operationId: putDatabases parameters: - $ref: "#/parameters/databaseRequest" responses: "200": $ref: "#/responses/DatabaseResponse" "401": $ref: "#/responses/Unauthorized" "403": $ref: "#/responses/AccessForbidden" "404": $ref: "#/responses/NotFound" "422": $ref: "#/responses/UnprocessableEntity" "500": $ref: "#/responses/ServerError" security: - ApiKeyAuth: [] summary: Update Databases tags: - Databases /factors: get: description: Return a list of all available Factors operationId: getFactors parameters: - $ref: "#/parameters/limitQuery" - $ref: "#/parameters/offsetQuery" - $ref: "#/parameters/activeQuery" - $ref: "#/parameters/factorIdQuery" responses: "200": $ref: "#/responses/FactorResponse" "401": $ref: "#/responses/Unauthorized" "403": $ref: "#/responses/AccessForbidden" "404": $ref: "#/responses/NotFound" "422": $ref: "#/responses/UnprocessableEntity" "500": $ref: "#/responses/ServerError" security: - ApiKeyAuth: [] summary: Get a list of factors tags: - Factors post: description: Factor record to be added operationId: postFactors parameters: - $ref: "#/parameters/factorRequest" responses: "201": $ref: "#/responses/SalesforcePostResponse" "401": $ref: "#/responses/Unauthorized" "403": $ref: "#/responses/AccessForbidden" "404": $ref: "#/responses/NotFound" "422": $ref: "#/responses/UnprocessableEntity" "500": $ref: "#/responses/ServerError" security: - ApiKeyAuth: [] summary: Add a new Factor to Taxnexus tags: - Factors /financialstatements: get: description: Return a list of all available FinancialStatements operationId: getFinancialStatements parameters: - $ref: "#/parameters/limitQuery" - $ref: "#/parameters/offsetQuery" - $ref: "#/parameters/activeQuery" - $ref: "#/parameters/financialStatementIdQuery" responses: "200": $ref: "#/responses/FinancialStatementResponse" "401": $ref: "#/responses/Unauthorized" "403": $ref: "#/responses/AccessForbidden" "404": $ref: "#/responses/NotFound" "422": $ref: "#/responses/UnprocessableEntity" "500": $ref: "#/responses/ServerError" security: - ApiKeyAuth: [] summary: Get a list of financialStatements tags: - FinancialStatements post: description: FinancialStatement record to be added operationId: postFinancialStatements parameters: - $ref: "#/parameters/financialStatementRequest" responses: "201": $ref: "#/responses/SalesforcePostResponse" "401": $ref: "#/responses/Unauthorized" "403": $ref: "#/responses/AccessForbidden" "404": $ref: "#/responses/NotFound" "422": $ref: "#/responses/UnprocessableEntity" "500": $ref: "#/responses/ServerError" security: - ApiKeyAuth: [] summary: Add a new FinancialStatement to Taxnexus tags: - FinancialStatements /industries: get: description: Return a list of all available Industries operationId: getIndustries parameters: - $ref: "#/parameters/limitQuery" - $ref: "#/parameters/offsetQuery" - $ref: "#/parameters/activeQuery" - $ref: "#/parameters/industryIdQuery" responses: "200": $ref: "#/responses/IndustryResponse" "401": $ref: "#/responses/Unauthorized" "403": $ref: "#/responses/AccessForbidden" "404": $ref: "#/responses/NotFound" "422": $ref: "#/responses/UnprocessableEntity" "500": $ref: "#/responses/ServerError" security: - ApiKeyAuth: [] summary: Get a list of industries tags: - Industries post: description: Industry record to be added operationId: postIndustries parameters: - $ref: "#/parameters/industryRequest" responses: "201": $ref: "#/responses/SalesforcePostResponse" "401": $ref: "#/responses/Unauthorized" "403": $ref: "#/responses/AccessForbidden" "404": $ref: "#/responses/NotFound" "422": $ref: "#/responses/UnprocessableEntity" "500": $ref: "#/responses/ServerError" security: - ApiKeyAuth: [] summary: Add a new industry to Taxnexus tags: - Industries /industrycompanies: get: description: Return a list of all available IndustryCompanies operationId: getIndustryCompanies parameters: - $ref: "#/parameters/limitQuery" - $ref: "#/parameters/offsetQuery" - $ref: "#/parameters/activeQuery" - $ref: "#/parameters/industryCompanyIdQuery" responses: "200": $ref: "#/responses/IndustryCompanyResponse" "401": $ref: "#/responses/Unauthorized" "403": $ref: "#/responses/AccessForbidden" "404": $ref: "#/responses/NotFound" "422": $ref: "#/responses/UnprocessableEntity" "500": $ref: "#/responses/ServerError" security: - ApiKeyAuth: [] summary: Get a list of industryCompanies tags: - IndustryCompanies post: description: IndustryCompany record to be added operationId: postIndustryCompanies parameters: - $ref: "#/parameters/industryCompanyRequest" responses: "201": $ref: "#/responses/SalesforcePostResponse" "401": $ref: "#/responses/Unauthorized" "403": $ref: "#/responses/AccessForbidden" "404": $ref: "#/responses/NotFound" "422": $ref: "#/responses/UnprocessableEntity" "500": $ref: "#/responses/ServerError" security: - ApiKeyAuth: [] summary: Add a new IndustryCompany to Taxnexus tags: - IndustryCompanies /industryproducts: get: description: Return a list of all available IndustryProducts operationId: getIndustryProducts parameters: - $ref: "#/parameters/limitQuery" - $ref: "#/parameters/offsetQuery" - $ref: "#/parameters/activeQuery" - $ref: "#/parameters/industryProductIdQuery" responses: "200": $ref: "#/responses/IndustryProductResponse" "401": $ref: "#/responses/Unauthorized" "403": $ref: "#/responses/AccessForbidden" "404": $ref: "#/responses/NotFound" "422": $ref: "#/responses/UnprocessableEntity" "500": $ref: "#/responses/ServerError" security: - ApiKeyAuth: [] summary: Get a list of industryProducts tags: - IndustryProducts post: description: Industry record to be added operationId: postIndustryproducts parameters: - $ref: "#/parameters/industryProductRequest" responses: "201": $ref: "#/responses/SalesforcePostResponse" "401": $ref: "#/responses/Unauthorized" "403": $ref: "#/responses/AccessForbidden" "404": $ref: "#/responses/NotFound" "422": $ref: "#/responses/UnprocessableEntity" "500": $ref: "#/responses/ServerError" security: - ApiKeyAuth: [] summary: Add a new industryproduct to Taxnexus tags: - IndustryProducts /observations: get: description: Return a list of all available Observations operationId: getObservations parameters: - $ref: "#/parameters/limitQuery" - $ref: "#/parameters/offsetQuery" - $ref: "#/parameters/activeQuery" - $ref: "#/parameters/observationIdQuery" responses: "200": $ref: "#/responses/ObservationResponse" "401": $ref: "#/responses/Unauthorized" "403": $ref: "#/responses/AccessForbidden" "404": $ref: "#/responses/NotFound" "422": $ref: "#/responses/UnprocessableEntity" "500": $ref: "#/responses/ServerError" security: - ApiKeyAuth: [] summary: Get a list of observations tags: - Observations post: description: Observation record to be added operationId: postObservations parameters: - $ref: "#/parameters/observationRequest" responses: "201": $ref: "#/responses/SalesforcePostResponse" "401": $ref: "#/responses/Unauthorized" "403": $ref: "#/responses/AccessForbidden" "404": $ref: "#/responses/NotFound" "422": $ref: "#/responses/UnprocessableEntity" "500": $ref: "#/responses/ServerError" security: - ApiKeyAuth: [] summary: Add a new Observation to Taxnexus tags: - Observations /roles: get: description: Return a list of Roles operationId: getRoles parameters: - $ref: "#/parameters/limitQuery" - $ref: "#/parameters/offsetQuery" - $ref: "#/parameters/roleIdQuery" responses: "200": $ref: "#/responses/RoleResponse" "401": $ref: "#/responses/Unauthorized" "403": $ref: "#/responses/AccessForbidden" "404": $ref: "#/responses/NotFound" "422": $ref: "#/responses/UnprocessableEntity" "500": $ref: "#/responses/ServerError" security: - ApiKeyAuth: [] summary: Get a list of Roles tags: - Roles /templates: get: description: Returns the PDF rendering template, or a link to where to get the template operationId: getTemplates parameters: - $ref: "#/parameters/limitQuery" - $ref: "#/parameters/offsetQuery" - $ref: "#/parameters/templateIdQuery" responses: "200": $ref: "#/responses/TemplateResponse" "401": $ref: "#/responses/Unauthorized" "403": $ref: "#/responses/AccessForbidden" "404": $ref: "#/responses/NotFound" "422": $ref: "#/responses/UnprocessableEntity" "500": $ref: "#/responses/ServerError" security: - ApiKeyAuth: [] summary: Get PDF Rendering Templates tags: - Templates /tenants: get: description: Return a list of Tenant records from the datastore operationId: getTenants parameters: - $ref: "#/parameters/tenantIdQuery" - $ref: "#/parameters/limitQuery" - $ref: "#/parameters/offsetQuery" responses: "200": $ref: "#/responses/TenantResponse" "401": $ref: "#/responses/Unauthorized" "403": $ref: "#/responses/AccessForbidden" "404": $ref: "#/responses/NotFound" "422": $ref: "#/responses/UnprocessableEntity" "500": $ref: "#/responses/ServerError" security: - ApiKeyAuth: [] summary: Get a list Tenants tags: - Tenants post: description: Create Tenants in Salesforce operationId: Tenants parameters: - $ref: "#/parameters/tenantRequest" responses: "201": $ref: "#/responses/SalesforcePostResponse" "401": $ref: "#/responses/Unauthorized" "403": $ref: "#/responses/AccessForbidden" "404": $ref: "#/responses/NotFound" "422": $ref: "#/responses/UnprocessableEntity" "500": $ref: "#/responses/ServerError" summary: Create new Tenants tags: - Tenants put: description: Update Tenant in Salesforce operationId: putTenants parameters: - $ref: "#/parameters/tenantRequest" responses: "200": $ref: "#/responses/TenantResponse" "401": $ref: "#/responses/Unauthorized" "403": $ref: "#/responses/AccessForbidden" "404": $ref: "#/responses/NotFound" "422": $ref: "#/responses/UnprocessableEntity" "500": $ref: "#/responses/ServerError" security: - ApiKeyAuth: [] summary: Update Tenants tags: - Tenants /topics: get: description: Retrieve Topic records from the microservice operationId: getTopics parameters: - $ref: "#/parameters/limitQuery" - $ref: "#/parameters/offsetQuery" - $ref: "#/parameters/topicIdQuery" responses: "200": $ref: "#/responses/TopicResponse" "401": $ref: "#/responses/Unauthorized" "403": $ref: "#/responses/AccessForbidden" "404": $ref: "#/responses/NotFound" "422": $ref: "#/responses/UnprocessableEntity" "500": $ref: "#/responses/ServerError" security: - ApiKeyAuth: [] summary: Get Topic records tags: - Topics post: description: Add new topics operationId: postTopics parameters: - $ref: "#/parameters/topicRequest" responses: "200": $ref: "#/responses/TopicResponse" "401": $ref: "#/responses/Unauthorized" "403": $ref: "#/responses/AccessForbidden" "404": $ref: "#/responses/NotFound" "422": $ref: "#/responses/UnprocessableEntity" "500": $ref: "#/responses/ServerError" security: - ApiKeyAuth: [] summary: Add new topics tags: - Topics /users: get: description: Return a list of User records from the datastore operationId: getUsers parameters: - $ref: "#/parameters/limitQuery" - $ref: "#/parameters/offsetQuery" - $ref: "#/parameters/userIdQuery" - $ref: "#/parameters/activeQuery" - $ref: "#/parameters/apiKeyQuery" responses: "200": $ref: "#/responses/UserResponse" "401": $ref: "#/responses/Unauthorized" "403": $ref: "#/responses/AccessForbidden" "404": $ref: "#/responses/NotFound" "422": $ref: "#/responses/UnprocessableEntity" "500": $ref: "#/responses/ServerError" security: - ApiKeyAuth: [] summary: Get a list Users tags: - Users post: description: Create user recorda in Salesforce operationId: postUsers parameters: - $ref: "#/parameters/newUserRequest" responses: "200": $ref: "#/responses/UserResponse" "401": $ref: "#/responses/Unauthorized" "403": $ref: "#/responses/AccessForbidden" "404": $ref: "#/responses/NotFound" "422": $ref: "#/responses/UnprocessableEntity" "500": $ref: "#/responses/ServerError" security: - ApiKeyAuth: [] summary: Create new Salesforce User tags: - Users definitions: Account: properties: AccountNumber: description: Account Number type: string AccountSource: description: The marketing origin of this account type: string Active: type: boolean AnnualRevenue: description: Annual Revenue Estimate format: double type: number BillingAddress: $ref: "#/definitions/Address" BillingContactID: description: Contact ID type: string CloseDate: description: Close Date type: string CloudRevenueTotal: type: number CloudType: description: The type of cloud company type: string CloudYear: description: The year company started cloud revenue type: string CreatedByID: description: Created By User ID type: string CreatedDate: description: Created Date type: string CrunchbaseURL: description: Crunchbase URL type: string Description: description: Description of the account type: string EIN: type: string EarningsCall: description: Earnings Call Date type: string Email: description: Main Account Email type: string EquityFunding: description: The amount of equity EquityFunding type: number Facebook: description: Company Facebook URL type: string Fax: description: Fax number type: string FoundedDate: description: Date company founded type: string ID: description: Taxnexus Account Id type: string IPODate: description: IPO Date type: string ImageAltText: type: string ImageURL: type: string Industries: description: Industries type: string Industry: description: Industry type: string LastModifiedByID: description: Last Modified By User ID type: string LastModifiedDate: description: Last Modified Date type: string LinkedIn: description: Company LinkedIn URL type: string Location: description: Headquarters Location Description type: string Logo: description: Company Logo URL type: string MarketCapitalization: description: Market Capitalization type: number Name: description: Account Name type: string NumberInvestments: description: Number of Investments type: number NumberOfEmployees: description: Employee Count Estimate format: int64 type: number OwnerID: description: Account Owner User ID type: string Ownership: description: Ownership type: string ParentID: description: Parent Account type: string Phone: description: Phone type: string Publish: description: Publish this record? type: boolean SIC: description: SIC Code type: string SICDesc: description: SIC Description type: string SalesforceFirst: description: A Salesforce-First company? type: boolean ShippingAddress: $ref: "#/definitions/Address" ShippingContactID: description: Shipping Contact ID type: string Site: description: Account Site type: string Slug: description: Slug type: string TagLine: description: Company tagline type: string TenantID: description: Tenant Identifier type: string TickerSymbol: description: Ticker Symbol type: string Twitter: description: Twitter URL type: string Type: description: Type type: string Website: description: Website type: string YearStarted: description: Year Started type: string type: object AccountRequest: properties: data: items: $ref: "#/definitions/Account" type: array meta: $ref: "#/definitions/RequestMeta" type: object AccountResponse: description: An array of Account objects properties: data: items: $ref: "#/definitions/Account" type: array meta: $ref: "#/definitions/ResponseMeta" type: object Address: properties: City: description: City type: string Country: description: Country full name type: string CountryCode: description: Country Code type: string PostalCode: description: Postal Code type: string State: description: State full name type: string StateCode: description: State Code type: string Street: description: Street number and name type: string type: object Asset: properties: AccountID: description: Account type: string Address: $ref: "#/definitions/Address" AssetLevel: description: Asset Level type: number AssetProvidedByID: description: Asset Provided By type: string AssetServicedByID: description: Asset Serviced By type: string CompanyProductID: description: Company Product type: string ConsequenceOfFailure: description: Consequence Of Failure type: string ContactID: description: Contact type: string CreatedByID: description: Created By type: string CreatedDate: description: Created Date type: string CurrentAmount: description: Current Amount type: number CurrentLifecycleEndDate: description: Current Lifecycle End Date type: string CurrentMrr: description: Current Monthly Recurring Revenue type: number CurrentQuantity: description: Current Quantity type: number Description: description: Description type: string DigitalAssetStatus: description: Digital Asset Status type: string ExternalIdentifier: description: External Id type: string HasLifecycleManagement: description: Has Lifecycle Management type: boolean ID: description: Record Id type: string InstallDate: description: Install Date type: string IsCompetitorProduct: description: Competitor Asset type: boolean IsInternal: description: Internal Asset type: boolean LastModifiedByID: description: Last Modified By type: string LastModifiedDate: description: Last Modified Date type: string LocationID: description: Location type: string MIMEType: description: MIME Type type: string ManufactureDate: description: Manufacture Date type: string Name: description: Asset Name type: string ParentID: description: Parent Asset type: string Price: description: Price type: number Product2ID: description: Product type: string ProductCode: description: Product Code type: string ProductDescription: description: Product Description type: string ProductFamily: description: Product Family type: string PurchaseDate: description: Purchase Date type: string Quantity: description: Quantity type: number RootAssetID: description: Root Asset type: string SerialNumber: description: Serial Number type: string Status: description: Status type: string StatusReason: description: Status Reason type: string StockKeepingUnit: description: Product SKU type: string TenantID: description: Tenant ID type: string TotalLifecycleAmount: description: Total Lifecycle Amount type: number Type: description: Type type: string URL: description: URL type: string UsageEndDate: description: Usage End Date type: string type: object AssetRequest: description: An array of Asset objects properties: Data: items: $ref: "#/definitions/Asset" type: array type: object AssetResponse: description: An array of Asset objects properties: Data: items: $ref: "#/definitions/Asset" type: array Meta: $ref: "#/definitions/ResponseMeta" type: object Cluster: properties: CreatedByID: description: Created By type: string CreatedDate: description: Created Date type: string Description: description: Description type: string Environment: description: Environment type: string Gateway: description: Gateway type: string ID: description: Record Id type: string IpAddress: description: IP Address type: string LastModifiedByID: description: Last Modified By type: string LastModifiedDate: description: Last Modified Date type: string Name: description: Cluster Name type: string OwnerID: description: Owner type: string Ref: description: External Reference type: string Status: description: Status type: string Subnet: description: Subnet type: string TenantID: description: tenantid type: string Type: description: Type type: string Zone: description: Zone type: string type: object ClusterRequest: properties: data: items: $ref: "#/definitions/Cluster" type: array meta: $ref: "#/definitions/RequestMeta" required: - data type: object ClusterResponse: description: An array of cluster objects properties: data: items: $ref: "#/definitions/Cluster" type: array meta: $ref: "#/definitions/ResponseMeta" type: object CompanyProduct: description: A software product or service vended by a Company properties: AccountID: description: ID of the Company that owns this Product type: string CreatedByID: description: Created By User ID type: string CreatedDate: description: Created Date type: string Description: description: Description of product type: string FullDescription: description: Full Description of product type: string ID: description: Record Id type: string ImageAltText: description: Image Alt Text type: string ImageURL: description: Image URL type: string LastModifiedByID: description: Last Modified By User ID type: string LastModifiedDate: description: Last Modified Date type: string Logo: description: Logo type: string Name: description: Product Name type: string ProductVideoID: description: Product Video ID type: string Published: description: Published type: boolean SalesforceSpecific: description: Salesforce Specific type: boolean Slug: description: Slug type: string TagLine: description: TagLine type: string URL: description: Website type: string type: object CompanyProductRequest: properties: data: items: $ref: "#/definitions/CompanyProduct" type: array meta: $ref: "#/definitions/RequestMeta" required: - data type: object CompanyProductResponse: properties: data: items: $ref: "#/definitions/CompanyProduct" type: array meta: $ref: "#/definitions/ResponseMeta" type: object Contact: properties: AccountID: description: The primary account ID of this contact type: string AssistantName: description: Assistant Name type: string AssistantPhone: description: Asst. Phone type: string BirthDate: description: Birthdate type: string CreatedByID: description: Created By User ID type: string CreatedDate: description: Created Date type: string CrunchbaseURL: description: Crunchbase URL type: string Department: description: Department type: string Description: description: Description type: string DoNotCall: description: Do Not Call? type: boolean Email: description: Email address type: string EmailBounceDate: description: Email Bounce Date type: string EmailBounceReason: description: Email Bounce Reason type: string Facebook: description: Fax Number type: string Fax: type: string FirstName: description: First Name type: string HasOptedOutOfEmail: description: Email Opt Out type: boolean HasOptedOutOfFax: description: Fax Opt Out type: boolean HomePhone: description: Home Phone type: string ID: description: Record Id type: string IsEmailBounced: description: Does this contact have bounced emails? type: boolean LastModifiedByID: description: Last Modified By User ID type: string LastModifiedDate: description: Last Modified Date type: string LastName: description: Last Name type: string LeadSource: description: Lead Source type: string LinkedIn: description: LinkedIn Page type: string MailingAddress: $ref: "#/definitions/Address" MobilePhone: description: Mobile Phone type: string Name: description: Full Name type: string NumberInvestments: description: Number of Investments type: number OtherAddress: $ref: "#/definitions/Address" OtherPhone: description: Other Phone type: string OwnerID: description: The User ID of the user who owns this Contact type: string PersonalEmail: description: Personal Email Address for this Contact type: string Phone: description: Phone Number type: string PhotoURL: description: URL of a photograph of this User type: string ReportsToID: description: Reports To User ID type: string Salutation: description: Salutation type: string Slug: description: Slug type: string TenantID: description: tenant identifier type: string Title: description: Contact Title type: string Twitter: type: string type: object ContactRequest: properties: data: items: $ref: "#/definitions/Contact" type: array meta: $ref: "#/definitions/RequestMeta" required: - data type: object ContactResponse: properties: data: items: $ref: "#/definitions/Contact" type: array meta: $ref: "#/definitions/ResponseMeta" type: object Contract: properties: AccountID: description: Account type: string ActivatedByID: description: Activated By type: string ActivatedDate: description: Activated Date type: string BillingAddress: $ref: "#/definitions/Address" description: Billing Address BillingContactID: description: Billing Contact type: string CompanySignedDate: description: Company Signed Date type: string CompanySignedID: description: Company Signed By type: string ContractNumber: description: Contract Number type: string ContractTerm: description: Contract Term (months) type: number CreatedByID: description: Created By User ID type: string CreatedDate: description: Created Date type: string CustomerSignedDate: description: Customer Signed Date type: string CustomerSignedID: description: Customer Signed By type: string CustomerSignedTitle: description: Customer Signed Title type: string DefaultEndUserID: description: End User type: string Description: description: Description type: string EndDate: description: Contract End Date type: string EndUserID: description: End User type: string HourlyRate: description: Hourly Rate type: number ID: description: Telnexus Record Id type: string LastModifiedByID: description: Last Modified By User ID type: string LastModifiedDate: description: Last Modified Date type: string Name: description: Contract Name type: string PaymentMethodID: description: Payment Method type: string PaymentTerms: description: Payment Terms type: string Perpetual: description: Perpetual Agreement? type: boolean ShippingAddress: $ref: "#/definitions/Address" description: Shipping Address ShippingContactID: description: Shipping Contact type: string StartDate: description: Contract Start Date type: string Status: description: Status type: string TenantID: description: Tenant Identifier type: string type: object ContractRequest: properties: Data: items: $ref: "#/definitions/Contract" type: array type: object ContractResponse: properties: Data: items: $ref: "#/definitions/Contract" type: array Meta: $ref: "#/definitions/ResponseMeta" type: object Database: description: A Database provisioned and owned by a Tenant properties: Active: description: Is this database active? type: boolean ClusterID: description: The ID of the Cluster in which this database is deployed type: string CreatedByID: description: Created By type: string CreatedDate: description: Created Date type: string DSN: description: Database connection string type: string DatabaseName: description: The name of the physical database in the cluster type: string ID: description: Record Id type: string LastModifiedByID: description: Last Modified By type: string LastModifiedDate: description: Last Modifed Date type: string Microservices: description: List of microservices implemented by this Database type: string Status: description: The current status of this Tenant type: string TenantID: description: The ID of the tenant who owns this Database type: string Type: description: The type of Database (mysql, etc) type: string type: object DatabaseRequest: description: An array of Database objects properties: data: items: $ref: "#/definitions/Database" type: array meta: $ref: "#/definitions/RequestMeta" type: object DatabaseResponse: description: An array of Database objects properties: data: items: $ref: "#/definitions/Database" type: array meta: $ref: "#/definitions/ResponseMeta" type: object DeleteResponse: properties: Data: items: $ref: "#/definitions/Message" type: array Meta: $ref: "#/definitions/ResponseMeta" type: object Error: properties: Code: format: int64 type: integer Fields: type: string Message: type: string type: object Factor: description: A Factor of analysis within a research topic properties: CreatedByID: description: Created By User ID type: string CreatedDate: description: Created Date type: string Description: description: Topic Description type: string ID: description: Record Id type: string LastModifiedByID: description: Last Modified By User ID type: string LastModifiedDate: description: Last Modified Date type: string Name: description: Factor Name type: string Observations: description: The list of Observations used to analyze this industry items: $ref: "#/definitions/Observation" type: array Slug: description: The slug of the corresponding page on the CMS type: string TopicID: description: The ID of the Topic that owns this Factor type: string type: object FactorRequest: description: An array of Factor objects submitted for processing properties: Data: items: $ref: "#/definitions/Factor" type: array type: object FactorResponse: description: An array of Factor objects produced in response to a request properties: Data: items: $ref: "#/definitions/Factor" type: array Meta: $ref: "#/definitions/ResponseMeta" type: object FinancialStatement: description: A financial statement for a company properties: AccessNumber: description: EDGAR Access Number type: string AccountID: description: Account ID type: string CloudRevenue: description: Cloud Revenue type: number CreatedByID: description: Created By User ID type: string CreatedDate: description: Created Date type: string Description: description: Description type: string EdgarURL: description: EDGAR URL type: string FilingType: description: Filing Type type: string GrossProfit: description: Gross Profit type: number ID: description: Record Id type: string LastModifiedByID: description: Last Modified By User ID type: string LastModifiedDate: description: Last Modified Date type: string NetIncome: description: Net Income type: number PeriodEndDate: description: Period End Date type: string TotalRevenue: description: Total Revenue type: number Year: description: Year type: string type: object FinancialStatementRequest: description: An array of FinancialStatement objects submitted for processing properties: Data: items: $ref: "#/definitions/FinancialStatement" type: array type: object FinancialStatementResponse: description: An array of FinancialStatement objects produced in response to a request properties: Data: items: $ref: "#/definitions/FinancialStatement" type: array Meta: $ref: "#/definitions/ResponseMeta" type: object Industry: description: An industry that is being researched properties: Companies: description: The AccountIDs of the Companies in this Industry items: type: string type: array CompanyProducts: description: The list of Products in this industry items: $ref: "#/definitions/CompanyProduct" type: array CreatedByID: description: Created By User ID type: string CreatedDate: description: Created Date type: string Description: description: Industry Description type: string ID: description: Record Id type: string ImageAltText: description: Image Alt Text type: string ImageURL: description: Image URL type: string LastModifiedByID: description: Last Modified By User ID type: string LastModifiedDate: description: Last Modified Date type: string Level: description: The hierarchical level of this Industry type: string Logo: description: Logo type: string Name: description: Industry Name type: string ParentIndustryID: description: The ID of the Parent Industry type: string Path: description: The full path of this industry, including Parent type: string ProductCategory: description: Is this industry a Product Category? type: boolean SiteURL: description: The URL of the corresponding page on the CMS type: string Slug: description: The CMS Slug for this Industry type: string TagLine: description: TagLine type: string type: object IndustryCompany: description: Junction object between Industry and Company properties: CompanyID: type: string CreatedByID: description: Created By User ID type: string CreatedDate: description: Created Date type: string ID: description: Record Id type: string IndustryID: type: string LastModifiedByID: description: Last Modified By User ID type: string LastModifiedDate: description: Last Modified Date type: string Path: type: string type: object IndustryCompanyRequest: description: An array of IndustryCompany objects submitted for processing properties: Data: items: $ref: "#/definitions/IndustryCompany" type: array type: object IndustryCompanyResponse: description: An array of IndustryCompany objects produced in response to a request properties: Data: items: $ref: "#/definitions/IndustryCompany" type: array Meta: $ref: "#/definitions/ResponseMeta" type: object IndustryProduct: description: Junction object between Industry and CompanyProduct properties: CompanyProduct: $ref: "#/definitions/CompanyProduct" CompanyProductID: type: string CreatedByID: description: Created By User ID type: string CreatedDate: description: Created Date type: string ID: description: Record Id type: string Industry: $ref: "#/definitions/Industry" IndustryID: type: string LastModifiedByID: description: Last Modified By User ID type: string LastModifiedDate: description: Last Modified Date type: string type: object IndustryProductRequest: description: An array of IndustryProduct objects submitted for processing properties: Data: items: $ref: "#/definitions/IndustryProduct" type: array type: object IndustryProductResponse: description: An array of IndustryProduct objects produced in response to a request properties: Data: items: $ref: "#/definitions/IndustryProduct" type: array Meta: $ref: "#/definitions/ResponseMeta" type: object IndustryRequest: description: An array of Industry objects submitted for processing properties: Data: items: $ref: "#/definitions/Industry" type: array type: object IndustryResponse: description: An array of Industry objects produced in response to a request properties: Data: items: $ref: "#/definitions/Industry" type: array Meta: $ref: "#/definitions/ResponseMeta" type: object InvalidError: allOf: - $ref: "#/definitions/Error" - properties: details: items: type: string type: array type: object Message: properties: message: type: string ref: type: string status: format: int64 type: number type: object Observation: description: A data point collected while analyzing a Factor properties: AccountID: description: The ID of the Company being analyzed type: string CompanyProductID: description: The ID of the Product being analyzed type: string CreatedByID: description: Created By User ID type: string CreatedDate: description: Created Date type: string Description: description: Notes concerning data collection type: string FactorID: description: The ID of the Factor that owns this Observation type: string ID: description: Record Id type: string LastModifiedByID: description: Last Modified By User ID type: string LastModifiedDate: description: Last Modified Date type: string SubjectType: description: Is the subject a Company or a Product? type: string Value: description: The data point collected type: string type: object ObservationRequest: description: An array of Observation objects submitted for processing properties: Data: items: $ref: "#/definitions/Observation" type: array type: object ObservationResponse: description: An array of Observation objects produced in response to a request properties: Data: items: $ref: "#/definitions/Observation" type: array Meta: $ref: "#/definitions/ResponseMeta" type: object Pagination: properties: limit: format: int64 type: number pagesize: format: int64 type: number poffset: format: int64 type: integer setsize: format: int64 type: number type: object RequestMeta: properties: TaxnexusAccount: description: Account Number of the Reseller or OEM type: string required: - TaxnexusAccount type: object ResponseMeta: properties: Contact: description: Microservice Contact Info type: string Copyright: description: Copyright Info type: string License: description: License Information and Restrictions type: string OperationID: description: Operation ID type: string Pagination: $ref: "#/definitions/Pagination" RequestIP: description: Request IP Address type: string RequestType: description: Request Type type: string RequestURL: description: Request URL type: string ServerInfo: description: Data Server Info type: string ServerResponseTime: description: Data Server Response Time (ms) type: string ServerTimestamp: description: Backend Server Timestamp type: string TaxnexusAccount: description: Account Number used for recording transactions type: string type: object Role: description: A functional role within a Tenant properties: Auth0RoleID: description: the corresponding auth0 role type: string "CreatedByID:": description: created by type: string CreatedDate: description: created date type: string Description: description: role description type: string ID: description: record id type: string LastModifiedByID: description: last modified by type: string LastModifiedDate: description: last modifed date type: string RoleName: description: the name of this role type: string TenantID: description: the id of the tenant that owns this role type: string type: object RoleRequest: description: An array of Role objects properties: data: items: $ref: "#/definitions/Role" type: array meta: $ref: "#/definitions/RequestMeta" type: object RoleResponse: description: An array of Role objects properties: data: items: $ref: "#/definitions/Role" type: array meta: $ref: "#/definitions/ResponseMeta" type: object SalesforcePost: description: Relationship object that connects user to a role properties: ID: type: string type: object SalesforcePostResponse: description: An array of Print-Ready ingest Objects properties: data: items: $ref: "#/definitions/SalesforcePost" type: array meta: $ref: "#/definitions/ResponseMeta" type: object Template: properties: CreatedByID: type: string CreatedDate: type: string Description: description: Description type: string HTML: description: HTML Body format: byte type: string ID: description: Record Id type: string IsActive: description: Active? type: boolean IsMaster: description: Master Template? type: boolean LastModifiedByID: type: string LastModifiedDate: type: string Name: description: Template Name type: string ObjectType: description: Object type: string RecordTypeName: description: Record Type Name type: string TenantID: description: tenant identifier type: string Type: description: Type type: string URL: description: URL type: string type: object TemplateResponse: properties: data: items: $ref: "#/definitions/Template" type: array meta: $ref: "#/definitions/ResponseMeta" type: object Tenant: description: Account Tenant properties: AccountID: description: The Account that owns this Tenant type: string Active: description: Is this Tenant currently active? type: boolean CreatedByID: description: Created By type: string CreatedDate: description: Created Date type: string Databases: items: $ref: "#/definitions/Database" type: array ID: description: Record Id type: string LastModifiedByID: description: Last Modified By type: string LastModifiedDate: description: Last Modifed Date type: string Roles: items: $ref: "#/definitions/Role" type: array Status: description: The current status of this Tenant type: string TenantName: description: Name of the Tenant Resource type: string TenantUsers: items: $ref: "#/definitions/TenantUser" type: array Type: description: Type of tenant type: string Version: description: The version number of the Tenant Onboarding system used to create this tenant type: string type: object TenantRequest: description: An array of Tenant objects properties: data: items: $ref: "#/definitions/Tenant" type: array meta: $ref: "#/definitions/RequestMeta" type: object TenantResponse: description: An array of Tenant objects properties: data: items: $ref: "#/definitions/Tenant" type: array meta: $ref: "#/definitions/ResponseMeta" type: object TenantUser: description: Relationship object that connects users to a tenant properties: accesslevel: description: The Tenant access level for this User type: string tenantid: description: The Tenant ID type: string userid: description: The User ID type: string type: object Topic: description: A research topic that collects data properties: CreatedByID: description: Created By User ID type: string CreatedDate: description: Created Date type: string Description: description: Topic Description type: string Factors: description: The list of Factors used to analyze this industry items: $ref: "#/definitions/Factor" type: array ID: description: Record Id type: string LastModifiedByID: description: Last Modified By User ID type: string LastModifiedDate: description: Last Modified Date type: string Name: description: Topic Name type: string ParentTopicID: description: The ID of the Parent Topic type: string Slug: description: The CMS Slug for this Topic type: string type: object TopicRequest: description: An array of Topic objects submitted for processing properties: Data: items: $ref: "#/definitions/Topic" type: array type: object TopicResponse: description: An array of Topic objects produced in response to a request properties: Data: items: $ref: "#/definitions/Topic" type: array Meta: $ref: "#/definitions/ResponseMeta" type: object User: properties: APIKey: description: API Key type: string AboutMe: description: About Me type: string AccountID: description: Account ID type: string Address: $ref: "#/definitions/Address" Alias: description: Alias type: string Auth0UserID: description: Auth0 User Id type: string CommunityNickname: description: Nickname type: string CompanyName: description: Company Name type: string ContactID: description: Contact type: string CreatedByID: description: Created User ID type: string CreatedDate: description: Date Created type: string DelegatedApproverID: description: Delegated Approver type: string Department: description: Department type: string Division: description: Division type: string Email: description: Email address type: string EmployeeNumber: description: Employee Number type: string EndOfDay: description: Time day ends type: string Environment: description: Environment type: string Extension: description: Extension type: string FabricAPIKey: description: Fabric API Key type: string Fax: description: Fax type: string FirstName: description: The first name type: string ForecastEnabled: description: Allow Forecasting type: boolean FullPhotoURL: description: Full Photo URL type: string ID: description: Record ID type: string IsActive: description: Active type: boolean IsPortalEnabled: description: Is the user enabled for Communities? type: boolean IsProfilePhotoActive: description: Has Profile Photo type: boolean IsSystemControlled: type: boolean LastIP: description: IP address of last login type: string LastLogin: description: Last login time type: string LastModifiedByID: description: Last Modified User ID type: string LastModifiedDate: description: Last Modified Date type: string LastName: description: The Last Name type: string LoginCount: description: Number of times user has logged in format: int64 type: number ManagerID: description: Manager type: string MobilePhone: description: Mobile type: string Name: description: Name type: string OutOfOfficeMessage: description: Out of office message type: string Phone: description: Phone type: string PortalRole: description: Portal Role Level type: string ProfileID: description: Profile type: string ReceivesAdminEmails: description: Info Emails type: boolean ReceivesAdminInfoEmails: description: Admin Info Emails type: boolean SenderEmail: description: Email Sender Address type: string SenderName: description: Email Sender Name type: string Signature: description: Email Signature type: string SmallPhotoURL: description: Small Photo URL type: string StartOfDay: description: The time day starts type: string TaxnexusAccount: description: Taxnexus Account type: string TenantID: description: Tenant ID associated with this user type: string TenantUsers: items: $ref: "#/definitions/TenantUser" type: array TimeZone: description: Time Zone type: string Title: description: Title type: string UserRoleID: description: Role type: string UserRoles: items: $ref: "#/definitions/UserRole" type: array UserType: description: User Type type: string Username: description: Username type: string type: object UserRequest: description: An array of User Objects to post properties: data: items: $ref: "#/definitions/User" type: array type: object UserResponse: description: An array of Print-Ready ingest Objects properties: data: items: $ref: "#/definitions/User" type: array meta: $ref: "#/definitions/ResponseMeta" type: object UserRole: description: Relationship object that connects user to a role properties: Auth0roleID: type: string CreatedByID: type: string CreatedDate: type: string x-nullable: true Description: type: string ID: type: string # Industries: # description: Industries # properties: # items: # $ref: "#/definitions/Industry" LastModifiedByID: type: string LastModifiedDate: type: string x-nullable: true Name: type: string RoleID: type: string UserID: type: string type: object