Procore.Api.CoreCompanyProjectBidTypes (procore_sdk v0.3.0)

API calls for all endpoints tagged CoreCompanyProjectBidTypes.

Summary

Functions

Link to this function

rest_v10_companies_company_id_project_bid_types_get(connection, procore_company_id, company_id, opts \\ [])

@spec rest_v10_companies_company_id_project_bid_types_get(
  Tesla.Env.client(),
  integer(),
  integer(),
  keyword()
) ::
  {:ok,
   Procore.Model.RestV10CompaniesCompanyIdWorkflowPermanentLogsGet401Response.t()}
  | {:ok, [Procore.Model.ProjectBidType2.t()]}
  | {:error, Tesla.Env.t()}

List Project Bid Types Return a list of Project Bid Types

Parameters

  • connection (Procore.Connection): Connection to server
  • procore_company_id (integer()): Unique company identifier associated with the Procore User Account.
  • company_id (integer()): Unique identifier for the company.
  • opts (keyword): Optional parameters
    • :page (integer()): Page
    • :per_page (integer()): Elements per page

Returns

  • {:ok, [%ProjectBidType2{}, ...]} on success
  • {:error, Tesla.Env.t} on failure
Link to this function

rest_v10_companies_company_id_project_bid_types_id_delete(connection, procore_company_id, company_id, id, opts \\ [])

@spec rest_v10_companies_company_id_project_bid_types_id_delete(
  Tesla.Env.client(),
  integer(),
  integer(),
  integer(),
  keyword()
) ::
  {:ok, nil}
  | {:ok,
     Procore.Model.RestV10CompaniesCompanyIdWorkflowPermanentLogsGet401Response.t()}
  | {:error, Tesla.Env.t()}

Delete Project Bid Type Delete the specified Project Bid Type.

Parameters

  • connection (Procore.Connection): Connection to server
  • procore_company_id (integer()): Unique company identifier associated with the Procore User Account.
  • company_id (integer()): Unique identifier for the company.
  • id (integer()): ID of the Project Bid Type
  • opts (keyword): Optional parameters

Returns

  • {:ok, nil} on success
  • {:error, Tesla.Env.t} on failure
Link to this function

rest_v10_companies_company_id_project_bid_types_id_get(connection, procore_company_id, company_id, id, opts \\ [])

@spec rest_v10_companies_company_id_project_bid_types_id_get(
  Tesla.Env.client(),
  integer(),
  integer(),
  integer(),
  keyword()
) ::
  {:ok,
   Procore.Model.RestV10CompaniesCompanyIdWorkflowPermanentLogsGet401Response.t()}
  | {:ok, Procore.Model.ProjectBidType2.t()}
  | {:error, Tesla.Env.t()}

Show Project Bid Type Show detail on a specified Project Bid Type.

Parameters

  • connection (Procore.Connection): Connection to server
  • procore_company_id (integer()): Unique company identifier associated with the Procore User Account.
  • company_id (integer()): Unique identifier for the company.
  • id (integer()): ID of the Project Bid Type
  • opts (keyword): Optional parameters

Returns

  • {:ok, Procore.Model.ProjectBidType2.t} on success
  • {:error, Tesla.Env.t} on failure
Link to this function

rest_v10_companies_company_id_project_bid_types_id_patch(connection, procore_company_id, company_id, id, body42, opts \\ [])

@spec rest_v10_companies_company_id_project_bid_types_id_patch(
  Tesla.Env.client(),
  integer(),
  integer(),
  integer(),
  Procore.Model.Body42.t(),
  keyword()
) ::
  {:ok,
   Procore.Model.RestV10CompaniesCompanyIdWorkflowPermanentLogsGet401Response.t()}
  | {:ok, Procore.Model.ProjectBidType2.t()}
  | {:error, Tesla.Env.t()}

Update Project Bid Type Update the specified Project Bid Type.

Parameters

  • connection (Procore.Connection): Connection to server
  • procore_company_id (integer()): Unique company identifier associated with the Procore User Account.
  • company_id (integer()): Unique identifier for the company.
  • id (integer()): ID of the Project Bid Type
  • body42 (Body42):
  • opts (keyword): Optional parameters

Returns

  • {:ok, Procore.Model.ProjectBidType2.t} on success
  • {:error, Tesla.Env.t} on failure
Link to this function

rest_v10_companies_company_id_project_bid_types_post(connection, procore_company_id, company_id, body42, opts \\ [])

@spec rest_v10_companies_company_id_project_bid_types_post(
  Tesla.Env.client(),
  integer(),
  integer(),
  Procore.Model.Body42.t(),
  keyword()
) ::
  {:ok,
   Procore.Model.RestV10CompaniesCompanyIdWorkflowPermanentLogsGet401Response.t()}
  | {:ok, Procore.Model.ProjectBidType2.t()}
  | {:error, Tesla.Env.t()}

Create Project Bid Type Create a new Project Bid Type in the specified Company.

Parameters

  • connection (Procore.Connection): Connection to server
  • procore_company_id (integer()): Unique company identifier associated with the Procore User Account.
  • company_id (integer()): Unique identifier for the company.
  • body42 (Body42):
  • opts (keyword): Optional parameters

Returns

  • {:ok, Procore.Model.ProjectBidType2.t} on success
  • {:error, Tesla.Env.t} on failure