Docs

Save Crew To Org

POST /crew/{crewId}/save-to-org

POST/crew/{crewId}/save-to-org

Required Tokens

FieldTypeRequiredDescription
BearerAuthorization: Bearer <api-key>OptionalYour API key. Pass it as the Bearer token on every request.

Pushes an event crew member's data up to the owning organization's crew database, in one of two ways depending on whether the member is correlated to an org record:

  • Save-back (the member already has an orgCorrelationId): the org record's correlated attribute values are blind-overwritten with the event's edited values. Event-only attributes (those with no org counterpart) are never synced up.
  • Promote-up (the member has no orgCorrelationId): a new org crew record is created in the owning organization carrying the member's correlated values, and its id is stamped back onto the event copy as its orgCorrelationId.

Data only ever flows into the event's owning organization. There is no request body.

Requires CrewDatabase.Edit permission on the event's owning organization. A user without that permission — or who is not a member of the owning org — is rejected with 403.

Path Parameters

FieldTypeRequiredDescription
crewIdGuidRequiredThe ID of the event crew member to save up. Replace `{{crewId}}` in the URL.

Response

Returns 201 Created with an empty body on success. Refetch the crew member (Get Crew Member) to observe the updated orgCorrelationId after a promote.