Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Deck of Cards
idbimExportAllToBCF
Card
defaulttrue
labelURL / Resource / JSON Structure
Resource: export/bcf

URLhttps://api-dev.bimplus.net/v2/jay-company/projects/<project_id>/issues/export/bcf

Examplehttps://api-dev.bimplus.net/v2/jay-company/projects/a23123b0-1973-4f5d-92a3-f786b3183901/issues/export/bcf

Card
labelHTTP Method
 GET
Card
labelDescription
 Export all the topics inside a project into a BCF file. The response contains an attachment_id using which the related BCF file can be downloaded.
Card
labelRequest
Code Block
borderColorGreen
titleHeaders
langxml
Authorization: BimPlus 9c1874a62c974dcfa75e0132c423a088
Content-Type: application/json
Card
labelResponse
Code Block
borderColorGreen
titleStatus
langxml
Status: 200 OK
Code Block
borderColorRed
titleJSON
langxml
{
    "attachment_id": "34462f62-7c86-46cd-87fd-f33cc1b1dfd4"
}

Anchor
importBCF
importBCF

Export a single or a list of Topics inside a project into a BCF file
Deck of Cards
idbimImportBCF
Card
defaulttrue
labelURL / Resource / JSON Structure
Resource: export/bcf

URLhttps://api-stage.bimplus.net/v2/<team_slug>/issues/export/bcf

Examplehttps://api-stage.bimplus.net/v2/bimplus/issues/export/bcf

Card
labelHTTP Method
 POST
Card
labelDescription
Export a single or a list of Topics inside a project into a BCF file. The issues to be exported are provided in the request. The response contains an attachment_id using which the related BCF file can be downloaded.
Card
labelRequest
Code Block
borderColorGreen
titleHeaders
langxml
Authorization: BimPlus 9c1874a62c974dcfa75e0132c423a088
Content-Type: application/json
Code Block
borderColorGreen
titleRequest
langxml
{
    "issuesId": [
        "5eae7fe7-1cad-4039-8b64-551caea8107a"
    ],
    "bcfFileName": "BCF Export Test-Wall info wrong.bcfzip"
}
Card
labelResponse
Code Block
borderColorGreen
titleStatus
langxml
Status: 201 CREATED
Code Block
borderColorGreen
titleResponse
langxml
{
    "attachment_id": "1892ad0c-5301-4b82-928d-8265c214b1cd"
}