List Activity Reports
Lists activity reports (CRA) for the API key’s team.
curl --request GET \
--url https://api.folkyn.com/api/v1/activity-reports \
--header 'Authorization: Bearer <token>'const options = {method: 'GET', headers: {Authorization: 'Bearer <token>'}};
fetch('https://api.folkyn.com/api/v1/activity-reports', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));import requests
url = "https://api.folkyn.com/api/v1/activity-reports"
headers = {"Authorization": "Bearer <token>"}
response = requests.get(url, headers=headers)
print(response.text)package main
import (
"fmt"
"net/http"
"io"
)
func main() {
url := "https://api.folkyn.com/api/v1/activity-reports"
req, _ := http.NewRequest("GET", url, nil)
req.Header.Add("Authorization", "Bearer <token>")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}{
"data": {
"items": [
{
"id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"mission": {
"id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"name": "<string>",
"currency": "<string>",
"rate_amount": 123,
"purchase_order": "<string>",
"project_code": {
"id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"name": "<string>",
"external_id": "<string>"
},
"client_rate_amount": 123
},
"external_referent": {
"id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"email": "<string>",
"company": "<string>",
"siren": "<string>",
"address": "<string>",
"postal_code": "<string>",
"city": "<string>"
},
"report_month": "2024-03",
"report_period_time_zone": "Europe/Paris",
"report_period_start": "2024-03-01T00:00:00.000+01:00",
"report_period_end": "2024-03-31T23:59:59.999+02:00",
"submission_date": "2023-11-07T05:31:56Z",
"reviewed_at": "2023-11-07T05:31:56Z",
"rejection_reason": "<string>",
"freelancer": {
"id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"first_name": "<string>",
"last_name": "<string>",
"email": "<string>",
"external_id": "<string>",
"siren": "<string>",
"referent": {
"id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"first_name": "<string>",
"last_name": "<string>",
"email": "<string>"
}
},
"invoicing_is_paid": true,
"expenses_is_paid": true,
"invoice_amount_excl_vat": 123,
"expense_amount_excl_vat": 123,
"project_codes": [
{
"id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"name": "<string>",
"external_id": "<string>",
"amount_excl_vat": 123
}
],
"supplementary_items": [
{
"id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"description": "<string>",
"amount_excl_vat": 123,
"project_code_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a"
}
],
"created_at": "2023-11-07T05:31:56Z",
"accounting_entries": [
{
"id": "3c90c3cc-0d44-4b50-8888-8dd25736052a"
}
],
"timesheets": [
{
"id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"type": "hourly",
"description": "<string>",
"date": "2023-12-25",
"hours": 123,
"project_code_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a"
}
]
}
],
"total": 123,
"current_page": 123,
"per_page": 123
}
}{
"error": {
"code": 401,
"message": "<string>",
"request_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"details": {
"field": "name",
"requiredScope": "tags:write",
"retryAfterSeconds": 1
}
}
}{
"error": {
"code": 401,
"message": "<string>",
"request_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"details": {
"field": "name",
"requiredScope": "tags:write",
"retryAfterSeconds": 1
}
}
}{
"error": {
"code": 401,
"message": "<string>",
"request_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"details": {
"field": "name",
"requiredScope": "tags:write",
"retryAfterSeconds": 1
}
}
}{
"error": {
"code": 401,
"message": "<string>",
"request_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"details": {
"field": "name",
"requiredScope": "tags:write",
"retryAfterSeconds": 1
}
}
}{
"error": {
"code": 401,
"message": "<string>",
"request_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"details": {
"field": "name",
"requiredScope": "tags:write",
"retryAfterSeconds": 1
}
}
}Authorizations
Use Authorization: Bearer <your_api_key>
Query Parameters
x >= 11 <= x <= 100Comma-separated activity report statuses. Case-insensitive (normalized to uppercase).
Allowed values: PENDING, APPROVED, REJECTED.
Response JSON uses a lowercase status field (pending, approved, rejected, paid) — see ActivityReportDisplayStatus.
Filter by day (YYYY-MM-DD).
"2026-04-08"
Mission UUID.
Freelancer UUID.
Filter by CRA calendar month, same as stored report_month (YYYY-MM).
Combines with other filters (logical AND).
^\d{4}-(0[1-9]|1[0-2])$"2026-04"
Sort field for the list (pairs with direction). Default created_at. review_date is an alias for reviewed_at (last review decision; null until reviewed).
created_at, reviewed_at, review_date Sort direction. Case-insensitive. Omit for desc.
asc, desc Response
Success
Show child attributes
Show child attributes
curl --request GET \
--url https://api.folkyn.com/api/v1/activity-reports \
--header 'Authorization: Bearer <token>'const options = {method: 'GET', headers: {Authorization: 'Bearer <token>'}};
fetch('https://api.folkyn.com/api/v1/activity-reports', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));import requests
url = "https://api.folkyn.com/api/v1/activity-reports"
headers = {"Authorization": "Bearer <token>"}
response = requests.get(url, headers=headers)
print(response.text)package main
import (
"fmt"
"net/http"
"io"
)
func main() {
url := "https://api.folkyn.com/api/v1/activity-reports"
req, _ := http.NewRequest("GET", url, nil)
req.Header.Add("Authorization", "Bearer <token>")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}{
"data": {
"items": [
{
"id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"mission": {
"id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"name": "<string>",
"currency": "<string>",
"rate_amount": 123,
"purchase_order": "<string>",
"project_code": {
"id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"name": "<string>",
"external_id": "<string>"
},
"client_rate_amount": 123
},
"external_referent": {
"id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"email": "<string>",
"company": "<string>",
"siren": "<string>",
"address": "<string>",
"postal_code": "<string>",
"city": "<string>"
},
"report_month": "2024-03",
"report_period_time_zone": "Europe/Paris",
"report_period_start": "2024-03-01T00:00:00.000+01:00",
"report_period_end": "2024-03-31T23:59:59.999+02:00",
"submission_date": "2023-11-07T05:31:56Z",
"reviewed_at": "2023-11-07T05:31:56Z",
"rejection_reason": "<string>",
"freelancer": {
"id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"first_name": "<string>",
"last_name": "<string>",
"email": "<string>",
"external_id": "<string>",
"siren": "<string>",
"referent": {
"id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"first_name": "<string>",
"last_name": "<string>",
"email": "<string>"
}
},
"invoicing_is_paid": true,
"expenses_is_paid": true,
"invoice_amount_excl_vat": 123,
"expense_amount_excl_vat": 123,
"project_codes": [
{
"id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"name": "<string>",
"external_id": "<string>",
"amount_excl_vat": 123
}
],
"supplementary_items": [
{
"id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"description": "<string>",
"amount_excl_vat": 123,
"project_code_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a"
}
],
"created_at": "2023-11-07T05:31:56Z",
"accounting_entries": [
{
"id": "3c90c3cc-0d44-4b50-8888-8dd25736052a"
}
],
"timesheets": [
{
"id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"type": "hourly",
"description": "<string>",
"date": "2023-12-25",
"hours": 123,
"project_code_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a"
}
]
}
],
"total": 123,
"current_page": 123,
"per_page": 123
}
}{
"error": {
"code": 401,
"message": "<string>",
"request_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"details": {
"field": "name",
"requiredScope": "tags:write",
"retryAfterSeconds": 1
}
}
}{
"error": {
"code": 401,
"message": "<string>",
"request_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"details": {
"field": "name",
"requiredScope": "tags:write",
"retryAfterSeconds": 1
}
}
}{
"error": {
"code": 401,
"message": "<string>",
"request_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"details": {
"field": "name",
"requiredScope": "tags:write",
"retryAfterSeconds": 1
}
}
}{
"error": {
"code": 401,
"message": "<string>",
"request_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"details": {
"field": "name",
"requiredScope": "tags:write",
"retryAfterSeconds": 1
}
}
}{
"error": {
"code": 401,
"message": "<string>",
"request_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"details": {
"field": "name",
"requiredScope": "tags:write",
"retryAfterSeconds": 1
}
}
}