Body parameters

tostringrequired

The ID of the collection that is linked to.

typestringrequired

The type of collection link.

through_fieldstringrequired

The name of the collection field the link is through.

foreign_keystringrequired

The name of the foreign key on the collection that is linked to.

Response

idstring

The unique identifier for this collection link.

objectstring

This will always contain collection_link for this endpoint.

collection_idstring

The ID of the collection that is linked from.

tostring

The ID of the collection that is linked to.

typestring

The type of collection link.

through_fieldstring

The name of the collection field the link is through.

foreign_keystring

The name of the foreign key on the collection that is linked to.

created_atstring

The date and time when the collection link was created.

updated_atstring

The date and time when the collection link was updated.

import Blutui from 'blutui'

const blutui = new Blutui('ey....')

blutui.project('one').admin.links.create('collection-id', {
  to: '0195b544-bc46-7223-851d-3ce553b11ae6',
  type: 'hasMany',
  through_field: 'title',
  foreign_key: 'collection'
})
Response
{
  "id": "0195b611-161e-733c-9372-72985cffa043",
  "object": "collection_link",
  "collection_id": "0195b60e-87c6-7063-9b8a-e4c75d1b1268",
  "to": "0195b544-bc46-7223-851d-3ce553b11ae6",
  "type": "hasMany",
  "through_field": "title",
  "foreign_key": "collection",
  "created_at": "2025-03-21T13:18:47+13:00",
  "updated_at": "2025-03-21T13:18:47+13:00"
}

Was this helpful?