create
PUT /follow
PUT
/follow
Creates a follow.
Authorizations
Parameters
Query Parameters
expand
string
Expand a foreign key column (https://pocketbase.io/docs/working-with-relations/#expanding-relations).
requestKey
string
Unique request id. Prevents auto cancel when sending multiple requests.
Request Body
object
follower
required
User Id of person following
string
followee
required
User Id of person being followed
string
Example
{ "text": "test", "trail": "3zdz20mt9243f60", "author": "z014o6bpcg680mg"}
Responses
200
object
collectionId
required
string
collectionName
required
string
created
required
string
expand
required
object
follower
required
object
avatar
required
string
bio
required
string
collectionId
required
string
collectionName
required
string
created
required
string
emailVisibility
required
boolean
id
required
string
token
required
string
updated
required
string
username
required
string
verified
required
boolean
followee
required
string
follower
required
string
id
required
string
updated
required
string
Examples
Success
{ "collectionId": "8obn1ukumze565i", "collectionName": "follows", "created": "2025-01-02 22:01:46.741Z", "expand": { "follower": { "avatar": "pexels_photo_2230444_WILu8cRHVb.jpg", "bio": "ex aliqua velit deserunt ea exercitation do. Velit ullamco elit culpa eiusmod officia irure aute Lorem in ullamco labore ex. Officia ea qui in exercitation amet. Consequat laboris id duis enim Lorem dolore fugiat excepteur sunt. Sint consectetur duis tempor deserunt non. Ex amet sunt eu commodo.\n\nMollit labore cupidatat qui enim consectetur irure. Ea et reprehenderit ipsum adipisicing duis proident tempor esse excepteur dolor dolore anim consectetur aliqua. Laborum culpa eiusmod id ea consectetur do sit reprehenderit consequat voluptate mollit commodo. Ullamco aute ea minim enim et cupidatat ipsum cillum fugiat. Proident consectetur commodo Lorem do incididunt labore pariatur esse ea officia adipisicing. Do et sint culpa proident enim irure aliqua dolore magna. Laborum Lorem sunt amet occaecat occaecat mollit consectetur laborum ut.", "collectionId": "_pb_users_auth_", "collectionName": "users", "created": "2024-06-29 19:23:47.731Z", "emailVisibility": false, "id": "3mugf953w4a9fg5", "token": "eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJhcGlLZXlVaWQiOiIzMjk3NmExMi03ODE1LTQ1NGQtYTU5Yi1hNzY0ZTE4NmJjNjIiLCJzZWFyY2hSdWxlcyI6eyJjaXRpZXM1MDAiOnt9LCJ0cmFpbHMiOnsiZmlsdGVyIjoicHVibGljID0gdHJ1ZSBPUiBhdXRob3IgPSAzbXVnZjk1M3c0YTlmZzUgT1Igc2hhcmVzID0gM211Z2Y5NTN3NGE5Zmc1In19fQ.swips6eep2qMd0Nf3hdZr711N2fHyikOo7syWvuLEIA", "updated": "2024-12-30 18:36:39.161Z", "username": "Flomp", "verified": true } }, "followee": "znhd3hgrxl85c9f", "follower": "3mugf953w4a9fg5", "id": "0vfwhxsdvhf2jn5", "updated": "2025-01-02 22:01:46.741Z"}
400
object
message
required
string
detail
required
object
code
required
integer
message
required
string
data
required
object
author
required
object
code
required
string
message
required
string
Examples
Exception
{ "message": "Failed to create record.", "detail": { "code": 400, "message": "Failed to create record.", "data": { "author": { "code": "validation_missing_rel_records", "message": "Failed to find all relation records with the provided ids." } } }}
x-400:Invalid Params
object
message
required
string
detail
required
Array<object>
object
code
string
minimum
integer
type
string
inclusive
boolean
exact
boolean
message
string
path
Array<string>
Examples
Exception
{ "message": "invalid_params", "detail": [ { "code": "too_small", "minimum": 15, "type": "string", "inclusive": true, "exact": true, "message": "String must contain exactly 15 character(s)", "path": [ "followee" ] } ]}