Skip to main content
POST
/
api
/
integration-sources
/
{source_id}
/
saas-associations
/
bulk-status
Bulk Update Saas Association Status
curl --request POST \
  --url https://config.heyhumm.ai/api/integration-sources/{source_id}/saas-associations/bulk-status \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "association_ids": [
    "3c90c3cc-0d44-4b50-8888-8dd25736052a"
  ],
  "status": "SUGGESTED",
  "score": 123,
  "evidence": {}
}
'
{}

Documentation Index

Fetch the complete documentation index at: https://heyhumm.ai/docs/llms.txt

Use this file to discover all available pages before exploring further.

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Path Parameters

source_id
string<uuid> | null
required

Query Parameters

organization_id
string<uuid> | null
resource_id
string<uuid> | null
integration_source_id
string<uuid> | null
data_source_id
string<uuid> | null
context_source_id
string<uuid> | null
job_id
string<uuid> | null

Body

application/json

Payload for bulk SaaS association status updates.

association_ids
string<uuid>[]
required

List of SaaS association IDs to update

Minimum array length: 1
status
enum<string>
required

New status to apply

Available options:
SUGGESTED,
APPROVED,
REJECTED
score
number | null

Optional score to set for each association

evidence
Evidence · object

Optional evidence payload

Response

Successful Response

The response is of type Response Bulk Update Saas Association Status Api Integration Sources Source Id Saas Associations Bulk Status Post · object.