Ranch.Bot
Skip to reference

Records API

HTTP reference for records. Read authentication and access before using these operations. All examples use made-up data and placeholder credentials.

GET /v1/farm/{farm_id}/records

Get Records

Current records HTTP operation. External credential scopes: read:records. Minimum farm role: READER. Pagination accepts integer skip and take; set both explicitly. An omitted value passes through to the data query. Collection property names differ by resource; use the response schema. Production rate limit: 100 requests per 15-minute window, per legacy key, otherwise per client IP. RateLimit headers report the current window; respect Retry-After on 429.

ParameterInRequiredSchema
farm_idpathYes{"type":"string","format":"uuid"}
skipqueryNo{"type":"integer"}
takequeryNo{"type":"integer"}

Request example

bash example
curl --fail-with-body -X GET \
  'https://api.ranch.bot/v1/farm/<farm_id>/records' \
  -H "Authorization: Bearer $RANCHBOT_TOKEN"

Responses

StatusMeaningContent type
200Successapplication/json
400Request validation failed.application/json
401Missing/invalid authentication or insufficient farm role.application/json
403Missing required scope or credential type is disallowed.application/json
404Resource or active farm membership not found.application/json
429Rate limit exceeded. Retry after the indicated delay.application/json
500Unexpected server failure.application/json

200 response schema (application/json)

FieldTypePresenceConstraints
totalnumberRequired
recordsarrayRequired
records[]objectRequired
records[].typestringRequiredenum: ["OTHER","FEED","GENETIC","HEALTH","MOVEMENT"]
records[].idstringRequired
records[].created_atstringRequiredformat: "date-time"
records[].updated_atstringRequiredformat: "date-time"
records[].namestringRequired
records[].is_activebooleanRequired
records[].description (variant 1)nullRequired
records[].description (variant 2)stringRequired
records[].applied_atstringRequiredformat: "date-time"
records[].record_itemsarrayRequired
records[].record_items[]objectRequired
records[].record_items[].id (variant 1)stringRequired
records[].record_items[].id (variant 2)nullRequired
records[].record_items[].description (variant 1)stringRequired
records[].record_items[].description (variant 2)nullRequired
records[].record_items[].is_active (variant 1)booleanRequired
records[].record_items[].is_active (variant 2)nullRequired
records[].record_items[].metadata (variant 1)JSONRequired
records[].record_items[].metadata (variant 2)nullRequired
records[].record_items[].name (variant 1)stringRequired
records[].record_items[].name (variant 2)nullRequired
records[].record_items[].created_at (variant 1)stringRequiredformat: "date-time"
records[].record_items[].created_at (variant 2)nullRequired
records[].record_items[].updated_at (variant 1)stringRequiredformat: "date-time"
records[].record_items[].updated_at (variant 2)nullRequired
records[].filesarrayRequired
records[].files[]objectRequired
records[].files[].id (variant 1)stringRequired
records[].files[].id (variant 2)nullRequired
records[].files[].is_active (variant 1)booleanRequired
records[].files[].is_active (variant 2)nullRequired
records[].files[].mime_type (variant 1)stringRequired
records[].files[].mime_type (variant 2)nullRequired
records[].files[].name (variant 1)stringRequired
records[].files[].name (variant 2)nullRequired
records[].files[].size (variant 1)integerRequired
records[].files[].size (variant 2)nullRequired
records[].files[].url (variant 1)stringRequired
records[].files[].url (variant 2)nullRequired
records[].files[].created_at (variant 1)stringRequiredformat: "date-time"
records[].files[].created_at (variant 2)nullRequired
records[].files[].updated_at (variant 1)stringRequiredformat: "date-time"
records[].files[].updated_at (variant 2)nullRequired
json example
{
  "total": 0,
  "records": []
}

POST /v1/farm/{farm_id}/records

Create Record

Current records HTTP operation. External credential scopes: write:records. Minimum farm role: EDITOR. Direct requests execute without an app confirmation screen. Production rate limit: 100 requests per 15-minute window, per legacy key, otherwise per client IP. RateLimit headers report the current window; respect Retry-After on 429. At least one animal_ids or group_ids entry is required. Associations must name active entities in this farm; the service filters out ids outside that set. Supply ids obtained from the same farm.

ParameterInRequiredSchema
farm_idpathYes{"type":"string","format":"uuid"}

Request body (application/json)

FieldTypePresenceConstraints
(variant 1)JSONRequired
(variant 1).animal_idsJSONRequiredminItems: 1
(variant 2)JSONRequired
(variant 2).group_idsJSONRequiredminItems: 1
json example
{
  "animal_ids": [
    "11111111-1111-4111-8111-111111111111"
  ],
  "group_ids": [],
  "name": "Example observation",
  "type": "OTHER",
  "applied_at": "2026-09-01T12:00:00.000Z"
}

Request example

bash example
curl --fail-with-body -X POST \
  'https://api.ranch.bot/v1/farm/<farm_id>/records' \
  -H "Authorization: Bearer $RANCHBOT_TOKEN" \
  -H "Content-Type: application/json" \
  --data '{"animal_ids":["11111111-1111-4111-8111-111111111111"],"group_ids":[],"name":"Example observation","type":"OTHER","applied_at":"2026-09-01T12:00:00.000Z"}'

Responses

StatusMeaningContent type
201Successapplication/json
400Request validation failed.application/json
401Missing/invalid authentication or insufficient farm role.application/json
403Missing required scope or credential type is disallowed.application/json
404Resource or active farm membership not found.application/json
429Rate limit exceeded. Retry after the indicated delay.application/json
500Unexpected server failure.application/json

201 response schema (application/json)

FieldTypePresenceConstraints
typestringRequiredenum: ["OTHER","FEED","GENETIC","HEALTH","MOVEMENT"]
idstringRequired
created_atstringRequiredformat: "date-time"
updated_atstringRequiredformat: "date-time"
namestringRequired
is_activebooleanRequired
description (variant 1)nullRequired
description (variant 2)stringRequired
applied_atstringRequiredformat: "date-time"
json example
{
  "type": "OTHER",
  "id": "11111111-1111-4111-8111-111111111111",
  "created_at": "2026-09-01T12:00:00.000Z",
  "updated_at": "2026-09-01T12:00:00.000Z",
  "name": "Example",
  "is_active": true,
  "description": null,
  "applied_at": "2026-09-01T12:00:00.000Z"
}

DELETE /v1/farm/{farm_id}/records/{record_id}

Delete Record

Current records HTTP operation. External credential scopes: write:records. Minimum farm role: OWNER. Direct requests execute without an app confirmation screen. Production rate limit: 100 requests per 15-minute window, per legacy key, otherwise per client IP. RateLimit headers report the current window; respect Retry-After on 429. Deletion behavior is described below; a successful status does not imply erasure from all retained history. Marks the stored entity inactive (soft deletion).

ParameterInRequiredSchema
farm_idpathYes{"type":"string","format":"uuid"}
record_idpathYes{"type":"string","format":"uuid"}

Request example

bash example
curl --fail-with-body -X DELETE \
  'https://api.ranch.bot/v1/farm/<farm_id>/records/<record_id>' \
  -H "Authorization: Bearer $RANCHBOT_TOKEN"

Responses

StatusMeaningContent type
204Completed; no response body.No body
400Request validation failed.application/json
401Missing/invalid authentication or insufficient farm role.application/json
403Missing required scope or credential type is disallowed.application/json
404Resource or active farm membership not found.application/json
429Rate limit exceeded. Retry after the indicated delay.application/json
500Unexpected server failure.application/json

GET /v1/farm/{farm_id}/records/{record_id}

Get Record

Current records HTTP operation. External credential scopes: read:records. Minimum farm role: READER. Production rate limit: 100 requests per 15-minute window, per legacy key, otherwise per client IP. RateLimit headers report the current window; respect Retry-After on 429.

ParameterInRequiredSchema
farm_idpathYes{"type":"string","format":"uuid"}
record_idpathYes{"type":"string","format":"uuid"}

Request example

bash example
curl --fail-with-body -X GET \
  'https://api.ranch.bot/v1/farm/<farm_id>/records/<record_id>' \
  -H "Authorization: Bearer $RANCHBOT_TOKEN"

Responses

StatusMeaningContent type
200Successapplication/json
400Request validation failed.application/json
401Missing/invalid authentication or insufficient farm role.application/json
403Missing required scope or credential type is disallowed.application/json
404Resource or active farm membership not found.application/json
429Rate limit exceeded. Retry after the indicated delay.application/json
500Unexpected server failure.application/json

200 response schema (application/json)

FieldTypePresenceConstraints
typestringRequiredenum: ["OTHER","FEED","GENETIC","HEALTH","MOVEMENT"]
idstringRequired
created_atstringRequiredformat: "date-time"
updated_atstringRequiredformat: "date-time"
namestringRequired
is_activebooleanRequired
description (variant 1)nullRequired
description (variant 2)stringRequired
applied_atstringRequiredformat: "date-time"
record_itemsarrayRequired
record_items[]objectRequired
record_items[].id (variant 1)stringRequired
record_items[].id (variant 2)nullRequired
record_items[].description (variant 1)stringRequired
record_items[].description (variant 2)nullRequired
record_items[].is_active (variant 1)booleanRequired
record_items[].is_active (variant 2)nullRequired
record_items[].metadata (variant 1)JSONRequired
record_items[].metadata (variant 2)nullRequired
record_items[].name (variant 1)stringRequired
record_items[].name (variant 2)nullRequired
record_items[].created_at (variant 1)stringRequiredformat: "date-time"
record_items[].created_at (variant 2)nullRequired
record_items[].updated_at (variant 1)stringRequiredformat: "date-time"
record_items[].updated_at (variant 2)nullRequired
filesarrayRequired
files[]objectRequired
files[].id (variant 1)stringRequired
files[].id (variant 2)nullRequired
files[].is_active (variant 1)booleanRequired
files[].is_active (variant 2)nullRequired
files[].mime_type (variant 1)stringRequired
files[].mime_type (variant 2)nullRequired
files[].name (variant 1)stringRequired
files[].name (variant 2)nullRequired
files[].size (variant 1)integerRequired
files[].size (variant 2)nullRequired
files[].url (variant 1)stringRequired
files[].url (variant 2)nullRequired
files[].created_at (variant 1)stringRequiredformat: "date-time"
files[].created_at (variant 2)nullRequired
files[].updated_at (variant 1)stringRequiredformat: "date-time"
files[].updated_at (variant 2)nullRequired
json example
{
  "type": "OTHER",
  "id": "11111111-1111-4111-8111-111111111111",
  "created_at": "2026-09-01T12:00:00.000Z",
  "updated_at": "2026-09-01T12:00:00.000Z",
  "name": "Example",
  "is_active": true,
  "description": null,
  "applied_at": "2026-09-01T12:00:00.000Z",
  "record_items": [],
  "files": []
}

PUT /v1/farm/{farm_id}/records/{record_id}

Update Record

Current records HTTP operation. External credential scopes: write:records. Minimum farm role: EDITOR. Direct requests execute without an app confirmation screen. Production rate limit: 100 requests per 15-minute window, per legacy key, otherwise per client IP. RateLimit headers report the current window; respect Retry-After on 429. Provided association ids are connected to the record; they do not replace the entire association set.

ParameterInRequiredSchema
farm_idpathYes{"type":"string","format":"uuid"}
record_idpathYes{"type":"string","format":"uuid"}

Request body (application/json)

FieldTypePresenceConstraints
animal_idsarrayOptionaldefault: []
animal_ids[]stringRequiredformat: "uuid"
group_idsarrayOptionaldefault: []
group_ids[]stringRequiredformat: "uuid"
descriptionstringOptional
namestringOptional
typestringOptionalenum: ["FEED","GENETIC","HEALTH","MOVEMENT","OTHER"]
applied_atstringOptionalformat: "date-time"
json example
{}

Request example

bash example
curl --fail-with-body -X PUT \
  'https://api.ranch.bot/v1/farm/<farm_id>/records/<record_id>' \
  -H "Authorization: Bearer $RANCHBOT_TOKEN" \
  -H "Content-Type: application/json" \
  --data '{}'

Responses

StatusMeaningContent type
200Successapplication/json
400Request validation failed.application/json
401Missing/invalid authentication or insufficient farm role.application/json
403Missing required scope or credential type is disallowed.application/json
404Resource or active farm membership not found.application/json
429Rate limit exceeded. Retry after the indicated delay.application/json
500Unexpected server failure.application/json

200 response schema (application/json)

FieldTypePresenceConstraints
typestringRequiredenum: ["OTHER","FEED","GENETIC","HEALTH","MOVEMENT"]
idstringRequired
created_atstringRequiredformat: "date-time"
updated_atstringRequiredformat: "date-time"
namestringRequired
is_activebooleanRequired
description (variant 1)nullRequired
description (variant 2)stringRequired
applied_atstringRequiredformat: "date-time"
json example
{
  "type": "OTHER",
  "id": "11111111-1111-4111-8111-111111111111",
  "created_at": "2026-09-01T12:00:00.000Z",
  "updated_at": "2026-09-01T12:00:00.000Z",
  "name": "Example",
  "is_active": true,
  "description": null,
  "applied_at": "2026-09-01T12:00:00.000Z"
}

Error body

Validation and authentication errors generally use this envelope. Rate-limit errors omit data; OAuth polling also has protocol-specific errors shown in its reference.

json example
{
  "success": false,
  "errors": [
    {
      "code": 400,
      "name": "ValidationError",
      "message": "Example validation failure"
    }
  ]
}