vPlan
  1. Collection
vPlan
  • General
    • Structure
    • Synchronize Data
    • Pagination
    • Sorting
    • Filtering
    • Show & Hide
    • Eager Loading
    • Deep Insertion
    • Deprecated
    • External Reference
    • Rate Limits
    • Authentication
      • Authentication
        • Get authorization
        • Token Exchange
      • Me
        • Retrieve information about current authentication
    • Errors
      • Empty values in created object
      • Memory Exhausted
      • Report an issue
      • Service Unavailable
      • Retrieve Api Messages
  • Endpoints
    • Base Data
      • Board
        • Label
        • Status
        • Capacity
          • Capacity Stage
          • Capacity Resource Type Stage
          • Capacity Resource
          • Capacity Group
        • View
          • Create New BoardView
        • Retrieve Board List
        • Create New Board
        • Retrieve Single Board
        • Update Single Board
        • Remove Single Board
      • Stage
        • Retrieve Stage List
        • Create New Stage
        • Retrieve Single Stage
        • Update Single Stage
        • Remove Single Stage
      • Activity
        • Retrieve Activity List
        • Create New Activity
        • Retrieve Single Activity
        • Update Single Activity
        • Remove Single Activity
      • Resource
        • Schedule
        • Schedule Deviation
          • Retrieve Deviation List
          • Create New Schedule Deviation
          • Retrieve Single Schedule Deviation
          • Update Single Schedule Deviation
          • Remove Single Schedule Deviation
        • Retrieve Resource List
        • Create New Resource
        • Retrieve Single Resource
        • Update Single Resource
        • Remove Single Resource
      • Schedule
        • Retrieve Schedule List
        • Retrieve Schedule Year
        • Retrieve Schedule Month
        • Schedule Retrieve Day
      • Group
        • Retrieve Group List
        • Create New Group
        • Retrieve Single Group
        • Update Single Group
        • Remove Single Group
      • User
        • Invite User
        • Retrieve User List
        • Retrieve Single User
        • Update Single User
      • Space
        • Retrieve Space List
        • Create New Space
        • Retrieve Single Space
        • Update Single Space
        • Remove Single Space
    • Card Data
      • Collection
        • Custom Fields
          • Update Custom Field By Name
          • Delete Custom Field By Name
        • Retrieve Collection List
          GET
        • Create New Collection
          POST
        • Retrieve Single Collection
          GET
        • Update Single Collection
          PUT
        • Remove Single Collection
          DELETE
        • Move Collection to Board
          POST
        • Move Collection to Backlog
          PUT
      • Card
        • Custom Field
          • Update Custom Field By Name
          • Delete Custom Field By Name
        • Retrieve Card List
        • Create New Card
        • Retrieve Single Card
        • Update Single Card
        • Remove Single Card
        • Split Card
        • All Cards List
      • Attachment
        • Retrieve Attachment List
        • Upload New Attachment
        • Add New Attachment Link
        • Retrieve Single Attachment
        • Remove Single Attachment
      • Comment
        • Retrieve Comment List
        • Create New Comment
        • Retrieve Single Comment
        • Update Single Comment
        • Remove Single Comment
      • Checklist
        • Collection
          • Retrieve Collection Checklist List
          • Create New Collection Checklist
          • Retrieve Single Collection Checklist
          • Update Single Collection Checklist
          • Remove Single Collection Checklist
        • Card
          • Retrieve Card Checklist List
          • Create New Card Checklist
          • Retrieve Single Card Checklist
          • Update Single Card Checklist
          • Remove Single Card Checklist
      • Time Tracking
        • Retrieve TimeTracking List
        • Create New TimeTracking
        • Retrieve Single TimeTracking
        • Update Single TimeTracking
        • Remove Single TimeTracking
        • Export TimeTracking
      • Relations between cards
        • Retrieve CardRelation List
        • Create New CardRelation
        • Retrieve Single CardRelation
        • Remove Single CardRelation
      • Card Relation
    • Order Data
      • Address
      • Order
        • Retrieve Order List
        • Create New Order
        • Retrieve Single Order
        • Update Single Order
        • Remove Single Order
      • Row
        • Retrieve OrderRow List
        • Create New OrderRow
        • Retrieve Single OrderRow
        • Update Single OrderRow
        • Remove Single OrderRow
      • Item
        • Retrieve Item List
        • Create New Item
        • Retrieve Single Item
        • Update Single Item
        • Remove Single Item
      • Project
        • Retrieve Project List
        • Create New Project
        • Retrieve Single Project
        • Update Single Project
        • Remove Single Project
      • Relation
        • Retrieve Relation List
        • Create New Relation
        • Retrieve Single Relation
        • Update Single Relation
        • Remove Single Relation
      • Warehouse
        • Retrieve Warehouse List
        • Create New Warehouse
        • Retrieve Single Warehouse
        • Update Single Warehouse
        • Remove Single Warehouse
    • Webhook
      • Payload send to webhook url
        • Normal Object
        • Nested Object
        • Nested Object with Pivot
      • Retrieve Webhook List
      • Create New Webhook
      • Retrieve Single Webhook
      • Update Single Webhook
      • Remove Single Webhook
  1. Collection

Move Collection to Board

POST
/collection/{collection_id}/board/{board_id}
Move a not planned collection to Board and create Cards accordingly
NOTE
Creating cards is an asynchronous process,
new cards are almost but not instantly created

Request

Authorization
API Key
Add parameter in header
x-api-key
Example:
x-api-key: ********************
API Key
Add parameter in header
x-api-env
Example:
x-api-env: ********************
or
Path Params

Body Params application/json

Example
{
    "start": "2019-08-24",
    "force_stages": [
        "1ce1e25a-b64d-46d1-b38a-e05fd5717ac0",
        "86bd3ad5-4d76-4aa3-a15a-b0bf0c62d87d",
        "c8d4b144-a29f-480e-a28d-251f5cd8a477"
    ],
    "before": null,
    "after": null,
    "resources": [
        "a225c108-a6ca-4343-8e10-fe10c841a688",
        "d55ca612-5eab-4153-990a-7f7e059b184e",
        "90a8e6da-6bc6-4ff8-95d7-ee73b0908928"
    ],
    "reverse": true,
    "stage_id": "1ce1e25a-b64d-46d1-b38a-e05fd5717ac0",
    "status_id": "3c9fceef-c7ae-4bff-8450-f1a7b4dd47d8"
}

Request samples

Shell
JavaScript
Java
Swift
Go
PHP
Python
HTTP
C
C#
Objective-C
Ruby
OCaml
Dart
R
Request Request Example
Shell
JavaScript
Java
Swift
curl --location --request POST 'https://api.vplan.com/v1/collection/d1a15071-f9fa-4514-9939-cafab39ac3c6/board/60ca53ec-f913-41b3-b743-3133a255edfb' \
--header 'Content-Type: application/json' \
--header 'x-api-key;' \
--header 'x-api-env;' \
--data-raw '{
    "start": "2019-08-24",
    "force_stages": [
        "1ce1e25a-b64d-46d1-b38a-e05fd5717ac0",
        "86bd3ad5-4d76-4aa3-a15a-b0bf0c62d87d",
        "c8d4b144-a29f-480e-a28d-251f5cd8a477"
    ],
    "before": null,
    "after": null,
    "resources": [
        "a225c108-a6ca-4343-8e10-fe10c841a688",
        "d55ca612-5eab-4153-990a-7f7e059b184e",
        "90a8e6da-6bc6-4ff8-95d7-ee73b0908928"
    ],
    "reverse": true,
    "stage_id": "1ce1e25a-b64d-46d1-b38a-e05fd5717ac0",
    "status_id": "3c9fceef-c7ae-4bff-8450-f1a7b4dd47d8"
}'

Responses

🟢200OK
application/json
Body

Example
{
    "id": "d1a15071-f9fa-4514-9939-cafab39ac3c6",
    "board_id": "60ca53ec-f913-41b3-b743-3133a255edfb",
    "batch_id": null,
    "source_type": "custom",
    "external_ref": null,
    "status": "planned",
    "progress": "open",
    "position": null,
    "start": null,
    "end": null,
    "name": "Order 10199",
    "description": "3x Chair Lissabon",
    "due_date": "2020-01-02",
    "meta": null,
    "custom_fields": [],
    "cover_image_url": null,
    "cover_image_checksum": null,
    "cover_image_signature": null,
    "cover_image_bytes": 0,
    "cover_color_hex": null,
    "created_at": "2025-07-15T06:52:25Z",
    "updated_at": "2025-07-17T13:56:54Z",
    "warnings": []
}
🟠404Not Found
🟠401Not Logged In
Modified at 2025-07-24 09:37:44
Previous
Remove Single Collection
Next
Move Collection to Backlog
Built with