Skip to content

Get Relationship

GET
/admin/content/{collectionId}/relationships/{relId}
curl --request GET \
--url 'http://localhost:9000/admin/content/example/relationships/example?limit=20&offset=0'
collectionId
required
string
relId
required
string
limit
integer
default: 20
offset
integer
0
order
string
fields
string

OK

Media type application/json
object
relationship
object
id
string
relationship_type
string
created_at
string format: date-time
updated_at
string format: date-time
source_collection
object
target_collection
object
Example generated
{
"relationship": {
"id": "example",
"relationship_type": "example",
"created_at": "2026-04-15T12:00:00Z",
"updated_at": "2026-04-15T12:00:00Z",
"source_collection": {},
"target_collection": {}
}
}