Documentation ¶
Overview ¶
A Go package that provides bindings to the force.com REST API
Index ¶
- Constants
- func BuildQuery(fields, table string, constraints []string) string
- type ApiError
- type ApiErrors
- type ChildRelationship
- type CompositeRequest
- type CompositeResponse
- type CompositeSubRequest
- type ForceApi
- func (forceApi *ForceApi) Delete(ctx context.Context, path string, params url.Values) error
- func (forceApi *ForceApi) DeleteSObject(ctx context.Context, id string, in SObject) (err error)
- func (forceApi *ForceApi) DeleteSObjectByExternalId(ctx context.Context, id string, in SObject) (err error)
- func (forceApi *ForceApi) DescribeSObject(ctx context.Context, in SObject) (resp *SObjectDescription, err error)
- func (forceAPI *ForceApi) DescribeSObjects(ctx context.Context) (map[string]*SObjectMetaData, error)
- func (forceApi *ForceApi) Get(ctx context.Context, path string, params url.Values, out interface{}) error
- func (forceApi *ForceApi) GetLimits(ctx context.Context) (limits *Limits, err error)
- func (forceApi *ForceApi) GetSObject(ctx context.Context, id string, fields []string, out SObject) (err error)
- func (forceApi *ForceApi) GetSObjectByExternalId(ctx context.Context, id string, fields []string, out SObject) (err error)
- func (forceApi *ForceApi) InsertSObject(ctx context.Context, in SObject) (resp *SObjectResponse, err error)
- func (forceApi *ForceApi) Patch(ctx context.Context, path string, params url.Values, payload, out interface{}) error
- func (forceApi *ForceApi) Post(ctx context.Context, path string, params url.Values, payload, out interface{}) error
- func (forceApi *ForceApi) Put(ctx context.Context, path string, params url.Values, payload, out interface{}) error
- func (forceApi *ForceApi) Query(ctx context.Context, query string, out interface{}) (err error)
- func (forceApi *ForceApi) QueryAll(ctx context.Context, query string, out interface{}) (err error)
- func (forceApi *ForceApi) QueryNext(ctx context.Context, uri string, out interface{}) (err error)
- func (f *ForceApi) SetClient(client *http.Client)
- func (forceApi *ForceApi) SetDisableForceAutoAssign(value bool)
- func (forceApi *ForceApi) TraceOff()
- func (forceApi *ForceApi) TraceOn(prefix string, logger ForceApiLogger)
- func (forceApi *ForceApi) UpdateSObject(ctx context.Context, id string, in SObject) (err error)
- func (forceApi *ForceApi) UpsertSObjectByExternalId(ctx context.Context, id string, in SObject) (resp *SObjectResponse, err error)
- type ForceApiLogger
- type Limit
- type Limits
- type PicklistValue
- type RecordTypeInfo
- type SObject
- type SObjectApiResponse
- type SObjectDescription
- type SObjectField
- type SObjectMetaData
- type SObjectResponse
- type Subvalue
Constants ¶
const (
BaseQueryString = "SELECT %v FROM %v"
)
Variables ¶
This section is empty.
Functions ¶
func BuildQuery ¶
Types ¶
type ApiError ¶
type ApiError struct { Fields []string `json:"fields,omitempty" force:"fields,omitempty"` Message string `json:"message,omitempty" force:"message,omitempty"` ErrorCode string `json:"errorCode,omitempty" force:"errorCode,omitempty"` ErrorName string `json:"error,omitempty" force:"error,omitempty"` ErrorDescription string `json:"error_description,omitempty" force:"error_description,omitempty"` }
type ChildRelationship ¶
type CompositeRequest ¶ added in v0.0.11
type CompositeRequest struct {
SubRequests []CompositeSubRequest `json:"compositeRequest"`
}
type CompositeResponse ¶ added in v0.0.11
type CompositeResponse struct {
Response []Subvalue `json:"compositeResponse"`
}
type CompositeSubRequest ¶ added in v0.0.11
type ForceApi ¶
type ForceApi struct { InstanceURL string // contains filtered or unexported fields }
func (*ForceApi) DeleteSObject ¶
func (*ForceApi) DeleteSObjectByExternalId ¶
func (*ForceApi) DescribeSObject ¶
func (*ForceApi) DescribeSObjects ¶
func (*ForceApi) Get ¶
func (forceApi *ForceApi) Get(ctx context.Context, path string, params url.Values, out interface{}) error
Get issues a GET to the specified path with the given params and put the umarshalled (json) result in the third parameter
func (*ForceApi) GetSObject ¶
func (*ForceApi) GetSObjectByExternalId ¶
func (*ForceApi) InsertSObject ¶
func (*ForceApi) Patch ¶
func (forceApi *ForceApi) Patch(ctx context.Context, path string, params url.Values, payload, out interface{}) error
Patch issues a PATCH to the specified path with the given params and payload and put the unmarshalled (json) result in the third parameter
func (*ForceApi) Post ¶
func (forceApi *ForceApi) Post(ctx context.Context, path string, params url.Values, payload, out interface{}) error
Post issues a POST to the specified path with the given params and payload and put the unmarshalled (json) result in the third parameter
func (*ForceApi) Put ¶
func (forceApi *ForceApi) Put(ctx context.Context, path string, params url.Values, payload, out interface{}) error
Put issues a PUT to the specified path with the given params and payload and put the unmarshalled (json) result in the third parameter
func (*ForceApi) Query ¶
Use the Query resource to execute a SOQL query that returns all the results in a single response, or if needed, returns part of the results and an identifier used to retrieve the remaining results.
func (*ForceApi) QueryAll ¶
Use the QueryAll resource to execute a SOQL query that includes information about records that have been deleted because of a merge or delete. Use QueryAll rather than Query, because the Query resource will automatically filter out items that have been deleted.
func (*ForceApi) SetDisableForceAutoAssign ¶
func (*ForceApi) TraceOff ¶
func (forceApi *ForceApi) TraceOff()
TraceOff turns off tracing. It is idempotent.
func (*ForceApi) TraceOn ¶
func (forceApi *ForceApi) TraceOn(prefix string, logger ForceApiLogger)
TraceOn turns on logging for this ForceApi. After this is called, all requests, responses, and raw response bodies will be sent to the logger. If prefix is a non-empty string, it will be written to the front of all logged strings, which can aid in filtering log lines.
Use TraceOn if you want to spy on the ForceApi requests and responses.
Note that the base log.Logger type satisfies ForceApiLogger, but adapters can easily be written for other logging packages (e.g., the golang-sanctioned glog framework).
func (*ForceApi) UpdateSObject ¶
func (*ForceApi) UpsertSObjectByExternalId ¶
type ForceApiLogger ¶
type ForceApiLogger interface {
Printf(format string, v ...interface{})
}
type PicklistValue ¶
type RecordTypeInfo ¶
type SObjectApiResponse ¶
type SObjectApiResponse struct { Encoding string `json:"encoding"` MaxBatchSize int64 `json:"maxBatchSize"` SObjects []*SObjectMetaData `json:"sobjects"` }
type SObjectDescription ¶
type SObjectDescription struct { Name string `json:"name"` Fields []*SObjectField `json:"fields"` KeyPrefix string `json:"keyPrefix"` Layoutable bool `json:"layoutable"` Activateable bool `json:"activateable"` LabelPlural string `json:"labelPlural"` Custom bool `json:"custom"` CompactLayoutable bool `json:"compactLayoutable"` Label string `json:"label"` Searchable bool `json:"searchable"` URLs map[string]string `json:"urls"` Queryable bool `json:"queryable"` Deletable bool `json:"deletable"` Updateable bool `json:"updateable"` Createable bool `json:"createable"` CustomSetting bool `json:"customSetting"` Undeletable bool `json:"undeletable"` Mergeable bool `json:"mergeable"` Replicateable bool `json:"replicateable"` Triggerable bool `json:"triggerable"` FeedEnabled bool `json:"feedEnabled"` Retrievable bool `json:"retrieveable"` SearchLayoutable bool `json:"searchLayoutable"` LookupLayoutable bool `json:"lookupLayoutable"` Listviewable bool `json:"listviewable"` DeprecatedAndHidden bool `json:"deprecatedAndHidden"` RecordTypeInfos []*RecordTypeInfo `json:"recordTypeInfos"` ChildRelationsips []*ChildRelationship `json:"childRelationships"` AllFields string `json:"-"` // Not from force.com API. Used to generate SELECT * queries. }
type SObjectField ¶
type SObjectField struct { Length float64 `json:"length"` Name string `json:"name"` Type string `json:"type"` DefaultValue string `json:"defaultValue"` RestrictedPicklist bool `json:"restrictedPicklist"` NameField bool `json:"nameField"` ByteLength float64 `json:"byteLength"` Precision float64 `json:"precision"` Filterable bool `json:"filterable"` Sortable bool `json:"sortable"` Unique bool `json:"unique"` CaseSensitive bool `json:"caseSensitive"` Calculated bool `json:"calculated"` Scale float64 `json:"scale"` Label string `json:"label"` NamePointing bool `json:"namePointing"` Custom bool `json:"custom"` HtmlFormatted bool `json:"htmlFormatted"` DependentPicklist bool `json:"dependentPicklist"` Permissionable bool `json:"permissionable"` ReferenceTo []string `json:"referenceTo"` RelationshipOrder float64 `json:"relationshipOrder"` SoapType string `json:"soapType"` CalculatedValueFormula string `json:"calculatedValueFormula"` DefaultValueFormula string `json:"defaultValueFormula"` DefaultedOnCreate bool `json:"defaultedOnCreate"` Digits float64 `json:"digits"` Groupable bool `json:"groupable"` Nillable bool `json:"nillable"` InlineHelpText string `json:"inlineHelpText"` WriteRequiresMasterRead bool `json:"writeRequiresMasterRead"` PicklistValues []*PicklistValue `json:"picklistValues"` Updateable bool `json:"updateable"` Createable bool `json:"createable"` DeprecatedAndHidden bool `json:"deprecatedAndHidden"` DisplayLocationInDecimal bool `json:"displayLocationInDecimal"` CascadeDelete bool `json:"cascasdeDelete"` RestrictedDelete bool `json:"restrictedDelete"` ControllerName string `json:"controllerName"` ExternalId bool `json:"externalId"` IdLookup bool `json:"idLookup"` AutoNumber bool `json:"autoNumber"` RelationshipName string `json:"relationshipName"` }
type SObjectMetaData ¶
type SObjectMetaData struct { Name string `json:"name"` Label string `json:"label"` KeyPrefix string `json:"keyPrefix"` LabelPlural string `json:"labelPlural"` Custom bool `json:"custom"` Layoutable bool `json:"layoutable"` Activateable bool `json:"activateable"` URLs map[string]string `json:"urls"` Searchable bool `json:"searchable"` Updateable bool `json:"updateable"` Createable bool `json:"createable"` DeprecatedAndHidden bool `json:"deprecatedAndHidden"` CustomSetting bool `json:"customSetting"` Deletable bool `json:"deletable"` FeedEnabled bool `json:"feedEnabled"` Mergeable bool `json:"mergeable"` Queryable bool `json:"queryable"` Replicateable bool `json:"replicateable"` Retrieveable bool `json:"retrieveable"` Undeletable bool `json:"undeletable"` Triggerable bool `json:"triggerable"` }
type SObjectResponse ¶
type SObjectResponse struct { Id string `force:"id,omitempty"` Errors ApiErrors `force:"error,omitempty"` //TODO: Not sure if ApiErrors is the right object Success bool `force:"success,omitempty"` }
Response received from force.com API after insert of an sobject.
type Subvalue ¶ added in v0.0.11
type Subvalue struct { Body json.RawMessage `json:"body"` HTTPHeaders map[string]string `json:"httpHeaders"` HTTPStatusCode int `json:"httpStatusCode"` ReferenceID string `json:"referenceId"` }
Subvalue is the subresponses to the composite API. Using the referende id, one will be able to match the response with the request.