Versions Compared

Key

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

...


Anchor
issueService
issueService

Issue Service

...

Deck of Cards
idbimGetIssueDetails
Card
labelImplementation Status

 Service available !

Card
labelHTTP Method

GET

Card
defaulttrue
labelURL / Resource / JSON Structure

Resource: issues/<issue_id> 

URLhttps://api.bimplus.net/v2/<team>/issues/<issue_id>

Example:

Card
labelDescription

Get details of an issue present in a project.

Card
labelRequest
Code Block
borderColorGreen
langxml
titleHeaders
Authorization: BimPlus 9c1874a62c974dcfa75e0132c423a088
Content-Type: application/json
Card
labelResponse
Code Block
borderColorGreen
langxml
titleStatus
Status: 200 OK


Code Block
borderColorRed
langxml
titleJSON


Anchor
getIssueTypes
getIssueTypes

Get all the issue types
Deck of Cards
idbimGetIssueTypest
Card
labelImplementation Status

Service not finished yet !

Card
labelHTTP Method

GET

Card
defaulttrue
labelURL / Resource / JSON Structure

Resource: issues/types 

URLhttps://api.bimplus.net/v2/<team>/issues/types

Examplehttps://api.bimplus.net/v2/bimplus/issues/types

Card
labelDescription

Get all the available issue types.

Card
labelRequest
Code Block
borderColorGreen
langxml
titleHeaders
Authorization: BimPlus 9c1874a62c974dcfa75e0132c423a088
Content-Type: application/json
Card
labelResponse
Code Block
borderColorGreen
langxml
titleStatus
Status: 200 OK


Code Block
borderColorRed
langxml
titleJSON


Anchor
getIssueTypeDetails
getIssueTypeDetails

Get details of the issue type
Deck of Cards
idbimGetIssueTypeDetails
Card
labelImplementation Status

Service not finished yet !

Card
labelHTTP Method

GET

Card
defaulttrue
labelURL / Resource / JSON Structure

Resource: issues/types/<type_id> 

URLhttps://api.bimplus.net/v2/<team>/issues/types/<type_id>

Example:

Card
labelDescription

Get details of a specified issue type.

Card
labelRequest
Code Block
borderColorGreen
langxml
titleHeaders
Authorization: BimPlus 9c1874a62c974dcfa75e0132c423a088
Content-Type: application/json
Card
labelResponse
Code Block
borderColorGreen
langxml
titleStatus
Status: 200 OK


Code Block
borderColorRed
langxml
titleJSON


Anchor
createPin
createPin

Create a new pin for the issue
Deck of Cards
idbimCreatePin
Card
labelImplementation Status

 Service available !

Card
labelHTTP Method

POST

Card
defaulttrue
labelURL / Resource / JSON Structure

Resource: issues/<issue_id>/pins 

URLhttps://api.bimplus.net/v2/<team>/issues/<issue_id>/pin

Example:

JSON Structure

Name

Mandatory / Optional

Type

Description

issueId

 

string (guid)

The id of the issue to which the pin is related

objectId

 

 

The id of the object to which the pin is related

position

optional

 

 

normalVector

optional

 

 

createdAt

optional

date

The creation date

Card
labelDescription

Create a new pin for an issue for relating the issue with its object.

Card
labelRequest
Code Block
borderColorGreen
langxml
titleHeaders
Authorization: BimPlus 9c1874a62c974dcfa75e0132c423a088
Content-Type: application/json


Code Block
borderColorRed
langxml
titleJSON
Card
labelResponse
Code Block
borderColorGreen
langxml
titleStatus
Status: 201 Created


Code Block
borderColorRed
langxml
titleJSON


Anchor
getPins
getPins

Get all the pins of the issue
Deck of Cards
idbimGetAllPins
Card
labelImplementation Status

 Service available !

Card
labelHTTP Method

GET

Card
defaulttrue
labelURL / Resource / JSON Structure

Resource: issues/<issue_id>/pins 

URLhttps://api.bimplus.net/v2/<team>/issues/<issue_id>/pins

Example:

Card
labelDescription

Get all the pins of a specified issue type.

Card
labelRequest
Code Block
borderColorGreen
langxml
titleHeaders
Authorization: BimPlus 9c1874a62c974dcfa75e0132c423a088
Content-Type: application/json
Card
labelResponse
Code Block
borderColorGreen
langxml
titleStatus
Status: 200 OK


Code Block
borderColorRed
langxml
titleJSON


Anchor
deletePins
deletePins

Delete all the pins from the issue
Deck of Cards
idbimDeleteAllPins
Card
labelImplementation Status

 Service available !

Card
labelHTTP Method

DELETE

Card
defaulttrue
labelURL / Resource / JSON Structure

Resource: issues/<issue_id>/pins 

URLhttps://api.bimplus.net/v2/<team>/issues/<issue_id>/pins

Example:

Card
labelDescription

Delete all the pins from a specified issue.

Card
labelRequest
Code Block
borderColorGreen
langxml
titleHeaders
Authorization: BimPlus 9c1874a62c974dcfa75e0132c423a088
Content-Type: application/json
Card
labelResponse
Code Block
borderColorGreen
langxml
titleStatus
Status: 200 OK


Anchor
createComment
createComment

Create a new comment for the issue
Deck of Cards
idbimCreateComment
Card
labelImplementation Status

Service not finished yet !

Card
labelHTTP Method

POST

Card
defaulttrue
labelURL / Resource / JSON Structure

Resource: issues/<issue_id>/comments 

URLhttps://api.bimplus.net/v2/<team>/issues/<issue_id>/comments

Example:

JSON Structure:

Name

Mandatory / Optional

Type

Description

issueId

 

string (guid)

The id of the issue to which the comment is related

text

 

string

The comment text

createdAt

 

string (date)

Creation date of the comment

author

 

string

The author of the comment

Card
labelDescription

Create a new comment for a specified issue.

Card
labelRequest
Code Block
borderColorGreen
langxml
titleHeaders
Authorization: BimPlus 9c1874a62c974dcfa75e0132c423a088
Content-Type: application/json


Code Block
borderColorRed
langxml
titleJSON
Card
labelResponse
Code Block
borderColorGreen
langxml
titleStatus
Status: 201 Created


Code Block
borderColorRed
langxml
titleJSON


Anchor
getComments
getComments

Get all the comments of the issue
Deck of Cards
idbimGetAllComments
Card
labelImplementation Status

Service not finished yet !

Card
labelHTTP Method

GET

Card
defaulttrue
labelURL / Resource / JSON Structure

Resource: issues/<issue_id>/comments 

URLhttps://api.bimplus.net/v2/<team>/issues/<issue_id>/comments

Example:

Card
labelDescription

Get all the comments of a specified issue.

Card
labelRequest
Code Block
borderColorGreen
langxml
titleHeaders
Authorization: BimPlus 9c1874a62c974dcfa75e0132c423a088
Content-Type: application/json
Card
labelResponse
Code Block
borderColorGreen
langxml
titleStatus
Status: 200 OK


Code Block
borderColorRed
langxml
titleJSON


Anchor
deleteComment
deleteComment

Delete the comment
Deck of Cards
idbimDeleteComment
Card
labelImplementation Status

Service not finished yet !

Card
labelHTTP Method

DELETE

Card
defaulttrue
labelURL / Resource / JSON Structure

Resource: issues/<issue_id>/comments/<comment_id> 

URLhttps://api.bimplus.net/v2/<team>/issues/<issue_id>/comments/<comment_id>

Example:

Card
labelDescription

Deletes a specified comment.

Card
labelRequest
Code Block
borderColorGreen
langxml
titleHeaders
Authorization: BimPlus 9c1874a62c974dcfa75e0132c423a088
Content-Type: application/json
Card
labelResponse
Code Block
borderColorGreen
langxml
titleStatus
Status: 200 OK


Anchor
createAttachmentForIssue
createAttachmentForIssue

Create a new attachment for the issue
Deck of Cards
idbimCreateAttachmentForIssue
Card
labelImplementation Status

 Service available !

Card
labelHTTP Method

POST

Card
defaulttrue
labelURL / Resource / JSON Structure

Resource: issues/<issue_id>/attachments 

URLhttps://api.bimplus.net/v2/<team>/issues/<issue_id>/attachments

Example:

JSON Structure

Name

Mandatory / Optional

Type

Description

objectIds

optional

string

The id of the issue objects to which the file has to be attached

fileName

optional

string

Name of the file to be attached to the project

type

optional

string

Mime type

size

optional

integer

Size of the file to be attached to the project

Card
labelDescription

Creates a new attachment for a specified issue.

Card
labelRequest
Code Block
borderColorGreen
langxml
titleHeaders
Authorization: BimPlus 9c1874a62c974dcfa75e0132c423a088
Content-Type: application/json


Code Block
borderColorRed
langxml
titleJSON
Card
labelResponse
Code Block
borderColorGreen
langxml
titleStatus
Status: 201 Created


Code Block
borderColorRed
langxml
titleJSON


Anchor
getAttachmentsFromIssue
getAttachmentsFromIssue

Get the attachment list from the issue
Deck of Cards
idbimGetAttachmentListFromIssue
Card
labelImplementation Status

 Service available !

Card
labelHTTP Method

GET

Card
defaulttrue
labelURL / Resource / JSON Structure

Resource: issues/<issue_id>/attachments 

URLhttps://api.bimplus.net/v2/<team>/issues/<issue_id>/attachments

Example:

Card
labelDescription

Gets the attachment list from a specified issue.

Card
labelRequest
Code Block
borderColorGreen
langxml
titleHeaders
Authorization: BimPlus 9c1874a62c974dcfa75e0132c423a088
Content-Type: application/json
Card
labelResponse
Code Block
borderColorGreen
langxml
titleStatus
Status: 200 OK


Code Block
borderColorRed
langxml
titleJSON


Anchor
deleteAttachmentsFromIssue
deleteAttachmentsFromIssue

Delete all the attachments from the issue
Deck of Cards
idbimDeleteAttachmentFromIssue
Card
labelImplementation Status

 Service available !

Card
labelHTTP Method

DELETE

Card
defaulttrue
labelURL / Resource / JSON Structure

Resource: issues/<issue_id>/attachments 

URLhttps://api.bimplus.net/v2/<team>/issues/<issue_id>/attachments

Example:

Card
labelDescription

Delete all the attachments from a specified issue.

Card
labelRequest
Code Block
borderColorGreen
langxml
titleHeaders
Authorization: BimPlus 9c1874a62c974dcfa75e0132c423a088
Content-Type: application/json
Card
labelResponse
Code Block
borderColorGreen
langxml
titleStatus
Status: 200 OK


Anchor
updateIssue
updateIssue

Update the issue
Deck of Cards
idbimUpdateIssue
Card
labelImplementation Status

 Service available !

Card
labelHTTP Method

PUT

Card
defaulttrue
labelURL / Resource / JSON Structure

Resource: issues/<issue_id> 

URLhttps://api.bimplus.net/v2/<team>/issues/<issue_id>

Example:

JSON Structure

Name

Mandatory / Optional

Type

Description

projectId

 

string (guid)

Id of the project

name

 

string

Name of the issue

description

 

string

Description of the issue

author

 

string

Author of the issue

status

 

string

Status of the issue

createdAt

 

string (date)

Creation date of the issue

dueDate

 

string (date)

The date in which the issue is planned to be finished

solution

 

 

 

classification

 

string

 

priority

 

string

 

Card
labelDescription

Update or replace a specified existing issue with a new one.

Card
labelRequest
Code Block
borderColorGreen
langxml
titleHeaders
Authorization: BimPlus 9c1874a62c974dcfa75e0132c423a088
Content-Type: application/json


Code Block
borderColorRed
langxml
titleJSON
Card
labelResponse
Code Block
borderColorGreen
langxml
titleStatus
Status: 200 OK


Anchor
deleteIssue
deleteIssue

Delete the issue
Deck of Cards
idbimDeleteIssue
Card
labelImplementation Status

 Service available !

Card
labelHTTP Method

DELETE

Card
defaulttrue
labelURL / Resource / JSON Structure

Resource: issues/<issue_id> 

URLhttps://api.bimplus.net/v2/<team>/issues/<issue_id>

Example:

Card
labelDescription

Deletes a specified issue.

Card
labelRequest
Code Block
borderColorGreen
langxml
titleHeaders
Authorization: BimPlus 9c1874a62c974dcfa75e0132c423a088
Content-Type: application/json
Card
labelResponse
Code Block
borderColorGreen
langxml
titleStatus
Status: 200 OK

...