Skip to content
Docs

    Address

    Create Organization Address
    client.Organizations.Address.New(ctx, organizationID, body) (*OrganizationAddress, error)
    POST/v1/organizations/{organization_id}/address
    Get Organization Address
    client.Organizations.Address.Get(ctx, organizationID) (*OrganizationAddress, error)
    GET/v1/organizations/{organization_id}/address
    Update Organization Address
    client.Organizations.Address.Update(ctx, organizationID, body) (*OrganizationAddress, error)
    PATCH/v1/organizations/{organization_id}/address
    ModelsExpand Collapse
    type OrganizationAddress struct{…}

    Organization address details.

    ID string

    Address ID.

    City string

    City or locality.

    Country string

    Two-letter ISO 3166-1 alpha-2 country code.

    CreatedAt Time

    When the address was created.

    formatdate-time
    Line1 string

    First line of the street address.

    Line2 string

    Second line of the street address. Null when not provided.

    OrganizationID string

    Organization ID the address belongs to.

    PostalCode string

    Postal or ZIP code.

    State string

    State, province, or region. Null when not provided.

    TaxID string

    Tax identification number. Null when not provided.

    TaxIDType string

    Type of the tax identification number. Null when not provided.

    UpdatedAt Time

    When the address was updated.

    formatdate-time