Procore.Api.ConstructionFinancialsCommitmentsRFQs (procore_sdk v0.3.0)
API calls for all endpoints tagged ConstructionFinancialsCommitmentsRFQs
.
Summary
Functions
List RFQs Return a list of all RFQs in a specified Project and Contract. See Filtering on List Actions for information on using the filtering capabilities provided by this endpoint.
Delete RFQ Delete a specified RFQ in a specified Project and Contract.
Show RFQ Return detailed information about a specified RFQ in a specified Project and Contract.
Update RFQ Update an RFQ in a specified Project and Contract.
Create RFQ Create a new RFQ in a specified Project and Contract.
List RFQ Quotes Return a list of all Quotes in a specified RFQ.
Show RFQ Quote Return detailed information about a specified Quote in a specified RFQ.
Update RFQ Quote Update a specified Quote in a specified RFQ.
Create RFQ Quote Create a new Quote in a specified RFQ.
List RFQ Responses Return a list of all Responses in a specified RFQ.
Show RFQ Response Return detailed information about a specified Response in a specified RFQ.
Update RFQ Response Update a specified Response in a specified RFQ.
Create RFQ Response Create a new Response in a specified RFQ.
Functions
rest_v10_rfqs_get(connection, procore_company_id, project_id, contract_id, opts \\ [])
@spec rest_v10_rfqs_get( Tesla.Env.client(), integer(), integer(), integer(), keyword() ) :: {:ok, Procore.Model.RestV10CompaniesCompanyIdWorkflowPermanentLogsGet401Response.t()} | {:ok, [Procore.Model.Rfq.t()]} | {:error, Tesla.Env.t()}
List RFQs Return a list of all RFQs in a specified Project and Contract. See Filtering on List Actions for information on using the filtering capabilities provided by this endpoint.
Parameters
connection
(Procore.Connection): Connection to serverprocore_company_id
(integer()): Unique company identifier associated with the Procore User Account.project_id
(integer()): Unique identifier for the project.contract_id
(integer()): Contract IDopts
(keyword): Optional parameters:page
(integer()): Page:per_page
(integer()): Elements per page:"filters[status]"
(String.t): Returns item(s) with the specified value for RFQ status.:"filters[created_at]"
(Date.t): Return item(s) created within the specified ISO 8601 datetime range. Formats:YYYY-MM-DD
...YYYY-MM-DD
- DateYYYY-MM-DDTHH:MM:SSZ
...YYYY-MM-DDTHH:MM:SSZ
- DateTime with UTC OffsetYYYY-MM-DDTHH:MM:SS+XX:00...
YYYY-MM-DDTHH:MM:SS+XX:00- Datetime with Custom Offset -
:"filters[updated_at]"(Date.t): Return item(s) last updated within the specified ISO 8601 datetime range. Formats:
YYYY-MM-DD...
YYYY-MM-DD- Date
YYYY-MM-DDTHH:MM:SSZ...
YYYY-MM-DDTHH:MM:SSZ- DateTime with UTC Offset
YYYY-MM-DDTHH:MM:SS+XX:00...
YYYY-MM-DDTHH:MM:SS+XX:00- Datetime with Custom Offset -
:"filters[commitment_contract_id]"(integer()): Return item(s) with the specified Commitment Contract ID. ### Returns -
, ...]}on success -
` on failure
rest_v10_rfqs_id_delete(connection, procore_company_id, id, project_id, contract_id, opts \\ [])
@spec rest_v10_rfqs_id_delete( Tesla.Env.client(), integer(), integer(), integer(), integer(), keyword() ) :: {:ok, nil} | {:ok, Procore.Model.RestV10CompaniesCompanyIdWorkflowPermanentLogsGet401Response.t()} | {:error, Tesla.Env.t()}
Delete RFQ Delete a specified RFQ in a specified Project and Contract.
Parameters
connection
(Procore.Connection): Connection to serverprocore_company_id
(integer()): Unique company identifier associated with the Procore User Account.id
(integer()): IDproject_id
(integer()): Unique identifier for the project.contract_id
(integer()): Contract IDopts
(keyword): Optional parameters
Returns
{:ok, nil}
on success{:error, Tesla.Env.t}
on failure
rest_v10_rfqs_id_get(connection, procore_company_id, id, project_id, contract_id, opts \\ [])
@spec rest_v10_rfqs_id_get( Tesla.Env.client(), integer(), integer(), integer(), integer(), keyword() ) :: {:ok, Procore.Model.RestV10CompaniesCompanyIdWorkflowPermanentLogsGet401Response.t()} | {:ok, Procore.Model.Rfq.t()} | {:error, Tesla.Env.t()}
Show RFQ Return detailed information about a specified RFQ in a specified Project and Contract.
Parameters
connection
(Procore.Connection): Connection to serverprocore_company_id
(integer()): Unique company identifier associated with the Procore User Account.id
(integer()): IDproject_id
(integer()): Unique identifier for the project.contract_id
(integer()): Contract IDopts
(keyword): Optional parameters
Returns
{:ok, Procore.Model.Rfq.t}
on success{:error, Tesla.Env.t}
on failure
rest_v10_rfqs_id_patch(connection, procore_company_id, id, rest_v10_rfqs_id_patch_request, opts \\ [])
@spec rest_v10_rfqs_id_patch( Tesla.Env.client(), integer(), integer(), Procore.Model.RestV10RfqsIdPatchRequest.t(), keyword() ) :: {:ok, Procore.Model.RestV10CompaniesCompanyIdWorkflowPermanentLogsGet401Response.t()} | {:ok, Procore.Model.Rfq.t()} | {:error, Tesla.Env.t()}
Update RFQ Update an RFQ in a specified Project and Contract.
Parameters
connection
(Procore.Connection): Connection to serverprocore_company_id
(integer()): Unique company identifier associated with the Procore User Account.id
(integer()): IDrest_v10_rfqs_id_patch_request
(RestV10RfqsIdPatchRequest):opts
(keyword): Optional parameters
Returns
{:ok, Procore.Model.Rfq.t}
on success{:error, Tesla.Env.t}
on failure
rest_v10_rfqs_post(connection, procore_company_id, rest_v10_rfqs_post_request, opts \\ [])
@spec rest_v10_rfqs_post( Tesla.Env.client(), integer(), Procore.Model.RestV10RfqsPostRequest.t(), keyword() ) :: {:ok, Procore.Model.RestV10CompaniesCompanyIdWorkflowPermanentLogsGet401Response.t()} | {:ok, Procore.Model.Rfq2.t()} | {:error, Tesla.Env.t()}
Create RFQ Create a new RFQ in a specified Project and Contract.
Parameters
connection
(Procore.Connection): Connection to serverprocore_company_id
(integer()): Unique company identifier associated with the Procore User Account.rest_v10_rfqs_post_request
(RestV10RfqsPostRequest):opts
(keyword): Optional parameters
Returns
{:ok, Procore.Model.Rfq2.t}
on success{:error, Tesla.Env.t}
on failure
rest_v10_rfqs_rfq_id_quotes_get(connection, procore_company_id, rfq_id, project_id, contract_id, opts \\ [])
@spec rest_v10_rfqs_rfq_id_quotes_get( Tesla.Env.client(), integer(), integer(), integer(), integer(), keyword() ) :: {:ok, Procore.Model.RestV10CompaniesCompanyIdWorkflowPermanentLogsGet401Response.t()} | {:ok, [Procore.Model.RfqQuote.t()]} | {:error, Tesla.Env.t()}
List RFQ Quotes Return a list of all Quotes in a specified RFQ.
Parameters
connection
(Procore.Connection): Connection to serverprocore_company_id
(integer()): Unique company identifier associated with the Procore User Account.rfq_id
(integer()): RFQ IDproject_id
(integer()): Unique identifier for the project.contract_id
(integer()): Contract IDopts
(keyword): Optional parameters:page
(integer()): Page:per_page
(integer()): Elements per page
Returns
{:ok, [%RfqQuote{}, ...]}
on success{:error, Tesla.Env.t}
on failure
rest_v10_rfqs_rfq_id_quotes_id_get(connection, procore_company_id, rfq_id, id, project_id, contract_id, opts \\ [])
@spec rest_v10_rfqs_rfq_id_quotes_id_get( Tesla.Env.client(), integer(), integer(), integer(), integer(), integer(), keyword() ) :: {:ok, Procore.Model.RestV10CompaniesCompanyIdWorkflowPermanentLogsGet401Response.t()} | {:ok, Procore.Model.RfqQuote.t()} | {:error, Tesla.Env.t()}
Show RFQ Quote Return detailed information about a specified Quote in a specified RFQ.
Parameters
connection
(Procore.Connection): Connection to serverprocore_company_id
(integer()): Unique company identifier associated with the Procore User Account.rfq_id
(integer()): RFQ IDid
(integer()): RFQ Quote IDproject_id
(integer()): Unique identifier for the project.contract_id
(integer()): Contract IDopts
(keyword): Optional parameters
Returns
{:ok, Procore.Model.RfqQuote.t}
on success{:error, Tesla.Env.t}
on failure
rest_v10_rfqs_rfq_id_quotes_id_patch(connection, procore_company_id, rfq_id, id, rest_v10_rfqs_rfq_id_quotes_post_request, opts \\ [])
@spec rest_v10_rfqs_rfq_id_quotes_id_patch( Tesla.Env.client(), integer(), integer(), integer(), Procore.Model.RestV10RfqsRfqIdQuotesPostRequest.t(), keyword() ) :: {:ok, Procore.Model.RestV10CompaniesCompanyIdWorkflowPermanentLogsGet401Response.t()} | {:ok, Procore.Model.RfqQuote.t()} | {:error, Tesla.Env.t()}
Update RFQ Quote Update a specified Quote in a specified RFQ.
Parameters
connection
(Procore.Connection): Connection to serverprocore_company_id
(integer()): Unique company identifier associated with the Procore User Account.rfq_id
(integer()): RFQ IDid
(integer()): RFQ Quote IDrest_v10_rfqs_rfq_id_quotes_post_request
(RestV10RfqsRfqIdQuotesPostRequest):opts
(keyword): Optional parameters
Returns
{:ok, Procore.Model.RfqQuote.t}
on success{:error, Tesla.Env.t}
on failure
rest_v10_rfqs_rfq_id_quotes_post(connection, procore_company_id, rfq_id, rest_v10_rfqs_rfq_id_quotes_post_request, opts \\ [])
@spec rest_v10_rfqs_rfq_id_quotes_post( Tesla.Env.client(), integer(), integer(), Procore.Model.RestV10RfqsRfqIdQuotesPostRequest.t(), keyword() ) :: {:ok, Procore.Model.RestV10CompaniesCompanyIdWorkflowPermanentLogsGet401Response.t()} | {:ok, Procore.Model.RfqQuote.t()} | {:error, Tesla.Env.t()}
Create RFQ Quote Create a new Quote in a specified RFQ.
Parameters
connection
(Procore.Connection): Connection to serverprocore_company_id
(integer()): Unique company identifier associated with the Procore User Account.rfq_id
(integer()): RFQ IDrest_v10_rfqs_rfq_id_quotes_post_request
(RestV10RfqsRfqIdQuotesPostRequest):opts
(keyword): Optional parameters
Returns
{:ok, Procore.Model.RfqQuote.t}
on success{:error, Tesla.Env.t}
on failure
rest_v10_rfqs_rfq_id_responses_get(connection, procore_company_id, rfq_id, project_id, contract_id, opts \\ [])
@spec rest_v10_rfqs_rfq_id_responses_get( Tesla.Env.client(), integer(), integer(), integer(), integer(), keyword() ) :: {:ok, Procore.Model.RestV10CompaniesCompanyIdWorkflowPermanentLogsGet401Response.t()} | {:ok, [Procore.Model.RfqResponse.t()]} | {:error, Tesla.Env.t()}
List RFQ Responses Return a list of all Responses in a specified RFQ.
Parameters
connection
(Procore.Connection): Connection to serverprocore_company_id
(integer()): Unique company identifier associated with the Procore User Account.rfq_id
(integer()): RFQ IDproject_id
(integer()): Unique identifier for the project.contract_id
(integer()): Contract IDopts
(keyword): Optional parameters:page
(integer()): Page:per_page
(integer()): Elements per page
Returns
{:ok, [%RfqResponse{}, ...]}
on success{:error, Tesla.Env.t}
on failure
rest_v10_rfqs_rfq_id_responses_id_get(connection, procore_company_id, rfq_id, id, project_id, contract_id, opts \\ [])
@spec rest_v10_rfqs_rfq_id_responses_id_get( Tesla.Env.client(), integer(), integer(), integer(), integer(), integer(), keyword() ) :: {:ok, Procore.Model.RestV10CompaniesCompanyIdWorkflowPermanentLogsGet401Response.t()} | {:ok, Procore.Model.RfqResponse.t()} | {:error, Tesla.Env.t()}
Show RFQ Response Return detailed information about a specified Response in a specified RFQ.
Parameters
connection
(Procore.Connection): Connection to serverprocore_company_id
(integer()): Unique company identifier associated with the Procore User Account.rfq_id
(integer()): RFQ IDid
(integer()): IDproject_id
(integer()): Unique identifier for the project.contract_id
(integer()): Contract IDopts
(keyword): Optional parameters
Returns
{:ok, Procore.Model.RfqResponse.t}
on success{:error, Tesla.Env.t}
on failure
rest_v10_rfqs_rfq_id_responses_id_patch(connection, procore_company_id, rfq_id, id, rest_v10_rfqs_rfq_id_responses_post_request, opts \\ [])
@spec rest_v10_rfqs_rfq_id_responses_id_patch( Tesla.Env.client(), integer(), integer(), integer(), Procore.Model.RestV10RfqsRfqIdResponsesPostRequest.t(), keyword() ) :: {:ok, Procore.Model.RestV10CompaniesCompanyIdWorkflowPermanentLogsGet401Response.t()} | {:ok, Procore.Model.RfqResponse.t()} | {:error, Tesla.Env.t()}
Update RFQ Response Update a specified Response in a specified RFQ.
Parameters
connection
(Procore.Connection): Connection to serverprocore_company_id
(integer()): Unique company identifier associated with the Procore User Account.rfq_id
(integer()): RFQ IDid
(integer()): IDrest_v10_rfqs_rfq_id_responses_post_request
(RestV10RfqsRfqIdResponsesPostRequest):opts
(keyword): Optional parameters
Returns
{:ok, Procore.Model.RfqResponse.t}
on success{:error, Tesla.Env.t}
on failure
rest_v10_rfqs_rfq_id_responses_post(connection, procore_company_id, rfq_id, rest_v10_rfqs_rfq_id_responses_post_request, opts \\ [])
@spec rest_v10_rfqs_rfq_id_responses_post( Tesla.Env.client(), integer(), integer(), Procore.Model.RestV10RfqsRfqIdResponsesPostRequest.t(), keyword() ) :: {:ok, Procore.Model.RestV10CompaniesCompanyIdWorkflowPermanentLogsGet401Response.t()} | {:ok, Procore.Model.RfqResponse.t()} | {:error, Tesla.Env.t()}
Create RFQ Response Create a new Response in a specified RFQ.
Parameters
connection
(Procore.Connection): Connection to serverprocore_company_id
(integer()): Unique company identifier associated with the Procore User Account.rfq_id
(integer()): RFQ IDrest_v10_rfqs_rfq_id_responses_post_request
(RestV10RfqsRfqIdResponsesPostRequest):opts
(keyword): Optional parameters
Returns
{:ok, Procore.Model.RfqResponse.t}
on success{:error, Tesla.Env.t}
on failure