GET
/
projects
/
{projectIdOrName}
/
integrations
/
{integrationId}
/
objects
/
{objectName}
/
metadata
curl --request GET \
  --url https://api.withampersand.com/v1/projects/{projectIdOrName}/integrations/{integrationId}/objects/{objectName}/metadata \
  --header 'X-Api-Key: <api-key>'
{
  "name": "contact",
  "displayName": "Contact",
  "mappedObjectName": "people",
  "fields": {}
}

Authorizations

X-Api-Key
string
header
required

Path Parameters

projectIdOrName
string
required

Project ID or name

integrationId
string
required

Integration ID

objectName
string
required

Object name (mapped or unmapped)

Query Parameters

groupRef
string

The groupRef for the installation

Response

200
application/json
The retrieved object metadata
name
string
required

The provider name of the object

Example:

"contact"

fields
object
required

Map of field metadata keyed by field name

displayName
string

Human-readable name of the object

Example:

"Contact"

mappedObjectName
string
Example:

"people"