You are viewing an old version of this page. View the current version.

Compare with Current View Page History

« Previous Version 6 Next »

This page is under construction

BCF Service


  • Import a BCF file into Bimplus topics
  • Export all the topics inside a project into a BCF file
  • Export a single or a list of Topics inside a project into a BCF file
  • Use filters to determine what to export during the export of topics

BCF Service


This service is used for importing a BCF file into Bimplus topics. The necessary attributes & assets such as author, responsible, attachments, comments, view etc are handled and matched according to the Bimplus Topic. The user can also export a single, list of topics or all the topics inside a project into a BCF file. While exporting, the user can decide if he would like to avoid exporting attachments, comments etc via appropriate filters.

Import a BCF file into Bimplus topics
    Resource: import 

    URLhttps://api-stage.bimplus.net/v2/<team_slug>/projects/<project_id>/model/issues/bcf

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

     PUT
    Import a single or a list of topics from a BCF file into Bimplus Topics. The necessary attributes & assets such as author, responsible, attachments, comments, view etc are handled and matched according to the Bimplus Topic. Please note that currently only a PUT function exists which means the API/server takes care of the logic of either creating or updating the related topics.
    Headers
    Authorization: BimPlus 9c1874a62c974dcfa75e0132c423a088
    Content-Type: application/json
    
    Status
    Status: 200 OK
    
    Response
    {
        "createdIssues": [
            {
                "id": "123"
            },
            {
                "id": "456"
            },
            {
                "id": "789"
            }
        ]
    }
    
    • No labels