Skip to main content
POST
/
api
/
v1
/
user_list_links
Creates a UserListLink resource.
curl --request POST \
  --url http://api/v1/user_list_links \
  --header 'Content-Type: application/ld+json' \
  --data '
{
  "userList": "https://example.com/",
  "user": "https://example.com/",
  "profileExternal": "https://example.com/"
}
'
{
  "@context": "<string>",
  "@id": "<string>",
  "@type": "<string>",
  "id": 123,
  "userList": "https://example.com/",
  "user": {
    "@context": "<string>",
    "@id": "<string>",
    "@type": "<string>",
    "id": 123,
    "email": "[email protected]",
    "fullName": "<string>",
    "logo": "<string>"
  },
  "profileExternal": {
    "@context": "<string>",
    "@id": "<string>",
    "@type": "<string>",
    "id": 123,
    "name": "<string>",
    "email": "<string>",
    "fullName": "<string>",
    "firstName": "<string>",
    "lastName": "<string>"
  }
}

Body

The new UserListLink resource

userList
string<iri-reference>
Example:

"https://example.com/"

user
string<iri-reference> | null
Example:

"https://example.com/"

profileExternal
string<iri-reference> | null
Example:

"https://example.com/"

Response

UserListLink resource created

@context
@id
string
@type
string
id
integer
userList
string<iri-reference>
Example:

"https://example.com/"

user
object | null
profileExternal
object | null