Skip to content

Integrations (2.0.0)

The 'Integrations' application of the Core API

Languages
Servers
https://{environment}.pigello.io

Answeredintegrationpersonalinformationaccess

Operations

Integrationserviceidconnection

Operations

Bulk write 'Integrationserviceidconnection'

Request

Security
customer_id and application_id and service_id and service_version_id and client_ct and client_object_id and client_secret
Bodyapplication/jsonArray [
content_typeobject(Contenttype)required
content_type.​idstring(uuid)
object_idstring(uuid)required
external_idstringrequired
organizationobject or null(Organization)
hiddenboolean
custom_idstring or null<= 128 characters
]
curl -i -X POST \
  https://dev.api.pigello.io/integrations/integrationserviceidconnection/list/ \
  -H 'Content-Type: application/json' \
  -H 'X-PIGELLO-APPLICATION-ID: YOUR_API_KEY_HERE' \
  -H 'X-PIGELLO-CLIENT-CT: YOUR_API_KEY_HERE' \
  -H 'X-PIGELLO-CLIENT-ENTITY: YOUR_API_KEY_HERE' \
  -H 'X-PIGELLO-CLIENT-SECRET: YOUR_API_KEY_HERE' \
  -H 'X-PIGELLO-CUSTOMER-ID: YOUR_API_KEY_HERE' \
  -H 'X-PIGELLO-SERVICE-ID: YOUR_API_KEY_HERE' \
  -H 'X-PIGELLO-SERVICE-VERSION-ID: YOUR_API_KEY_HERE' \
  -d '[
    {
      "content_type": {
        "id": "497f6eca-6276-4993-bfeb-53cbbbba6f08"
      },
      "organization": {
        "id": "497f6eca-6276-4993-bfeb-53cbbbba6f08"
      },
      "hidden": true,
      "object_id": "463a83d0-a816-4902-abba-2486e0c0a0bb",
      "external_id": "string",
      "custom_id": "string"
    }
  ]'

Responses

Successful bulk create/update

Bodyapplication/jsonArray [
content_typeobject(Contenttype)required
content_type.​idstring(uuid)
application_idstring(uuid)read-onlyrequired
idstring(uuid)read-onlyrequired

Additional Validation Information:

Must be unique

object_idstring(uuid)required
external_idstringrequired
organizationobject or null(Organization)
hiddenboolean
created_atstring(date-time)read-only
custom_idstring or null<= 128 characters
]
Response
application/json
[ { "content_type": {}, "application_id": "48ac72d0-a829-4896-a067-dcb1c2b0f30c", "organization": {}, "id": "497f6eca-6276-4993-bfeb-53cbbbba6f08", "hidden": true, "created_at": "2019-08-24T14:15:22Z", "object_id": "463a83d0-a816-4902-abba-2486e0c0a0bb", "external_id": "string", "custom_id": "string" } ]

Create 'Integrationserviceidconnection'

Request

Security
customer_id and application_id and service_id and service_version_id and client_ct and client_object_id and client_secret
Bodyapplication/json
content_typeobject(Contenttype)required
content_type.​idstring(uuid)
object_idstring(uuid)required
external_idstringrequired
organizationobject or null(Organization)
hiddenboolean
custom_idstring or null<= 128 characters
curl -i -X POST \
  https://dev.api.pigello.io/integrations/integrationserviceidconnection/ \
  -H 'Content-Type: application/json' \
  -H 'X-PIGELLO-APPLICATION-ID: YOUR_API_KEY_HERE' \
  -H 'X-PIGELLO-CLIENT-CT: YOUR_API_KEY_HERE' \
  -H 'X-PIGELLO-CLIENT-ENTITY: YOUR_API_KEY_HERE' \
  -H 'X-PIGELLO-CLIENT-SECRET: YOUR_API_KEY_HERE' \
  -H 'X-PIGELLO-CUSTOMER-ID: YOUR_API_KEY_HERE' \
  -H 'X-PIGELLO-SERVICE-ID: YOUR_API_KEY_HERE' \
  -H 'X-PIGELLO-SERVICE-VERSION-ID: YOUR_API_KEY_HERE' \
  -d '{
    "content_type": {
      "id": "497f6eca-6276-4993-bfeb-53cbbbba6f08"
    },
    "organization": {
      "id": "497f6eca-6276-4993-bfeb-53cbbbba6f08"
    },
    "hidden": true,
    "object_id": "463a83d0-a816-4902-abba-2486e0c0a0bb",
    "external_id": "string",
    "custom_id": "string"
  }'

Responses

Successful creation

Bodyapplication/json
content_typeobject(Contenttype)required
content_type.​idstring(uuid)
application_idstring(uuid)read-onlyrequired
idstring(uuid)read-onlyrequired

Additional Validation Information:

Must be unique

object_idstring(uuid)required
external_idstringrequired
organizationobject or null(Organization)
hiddenboolean
created_atstring(date-time)read-only
custom_idstring or null<= 128 characters
Response
application/json
{ "content_type": { "id": "497f6eca-6276-4993-bfeb-53cbbbba6f08" }, "application_id": "48ac72d0-a829-4896-a067-dcb1c2b0f30c", "organization": { "id": "497f6eca-6276-4993-bfeb-53cbbbba6f08" }, "id": "497f6eca-6276-4993-bfeb-53cbbbba6f08", "hidden": true, "created_at": "2019-08-24T14:15:22Z", "object_id": "463a83d0-a816-4902-abba-2486e0c0a0bb", "external_id": "string", "custom_id": "string" }

Update 'Integrationserviceidconnection'

Request

Security
customer_id and application_id and service_id and service_version_id and client_ct and client_object_id and client_secret
Path
pkstringwrite-onlyrequired
Bodyapplication/json
content_typeobject(Contenttype)required
content_type.​idstring(uuid)
object_idstring(uuid)required
external_idstringrequired
organizationobject or null(Organization)
hiddenboolean
custom_idstring or null<= 128 characters
curl -i -X PATCH \
  'https://dev.api.pigello.io/integrations/integrationserviceidconnection/{pk}/' \
  -H 'Content-Type: application/json' \
  -H 'X-PIGELLO-APPLICATION-ID: YOUR_API_KEY_HERE' \
  -H 'X-PIGELLO-CLIENT-CT: YOUR_API_KEY_HERE' \
  -H 'X-PIGELLO-CLIENT-ENTITY: YOUR_API_KEY_HERE' \
  -H 'X-PIGELLO-CLIENT-SECRET: YOUR_API_KEY_HERE' \
  -H 'X-PIGELLO-CUSTOMER-ID: YOUR_API_KEY_HERE' \
  -H 'X-PIGELLO-SERVICE-ID: YOUR_API_KEY_HERE' \
  -H 'X-PIGELLO-SERVICE-VERSION-ID: YOUR_API_KEY_HERE' \
  -d '{
    "content_type": {
      "id": "497f6eca-6276-4993-bfeb-53cbbbba6f08"
    },
    "organization": {
      "id": "497f6eca-6276-4993-bfeb-53cbbbba6f08"
    },
    "hidden": true,
    "object_id": "463a83d0-a816-4902-abba-2486e0c0a0bb",
    "external_id": "string",
    "custom_id": "string"
  }'

Responses

Successful update

Bodyapplication/json
content_typeobject(Contenttype)required
content_type.​idstring(uuid)
application_idstring(uuid)read-onlyrequired
idstring(uuid)read-onlyrequired

Additional Validation Information:

Must be unique

object_idstring(uuid)required
external_idstringrequired
organizationobject or null(Organization)
hiddenboolean
created_atstring(date-time)read-only
custom_idstring or null<= 128 characters
Response
application/json
{ "content_type": { "id": "497f6eca-6276-4993-bfeb-53cbbbba6f08" }, "application_id": "48ac72d0-a829-4896-a067-dcb1c2b0f30c", "organization": { "id": "497f6eca-6276-4993-bfeb-53cbbbba6f08" }, "id": "497f6eca-6276-4993-bfeb-53cbbbba6f08", "hidden": true, "created_at": "2019-08-24T14:15:22Z", "object_id": "463a83d0-a816-4902-abba-2486e0c0a0bb", "external_id": "string", "custom_id": "string" }

Get 'Integrationserviceidconnection'

Request

Security
customer_id and application_id and service_id and service_version_id and client_ct and client_object_id and client_secret
Path
pkstringwrite-onlyrequired
curl -i -X GET \
  'https://dev.api.pigello.io/integrations/integrationserviceidconnection/{pk}/' \
  -H 'X-PIGELLO-APPLICATION-ID: YOUR_API_KEY_HERE' \
  -H 'X-PIGELLO-CLIENT-CT: YOUR_API_KEY_HERE' \
  -H 'X-PIGELLO-CLIENT-ENTITY: YOUR_API_KEY_HERE' \
  -H 'X-PIGELLO-CLIENT-SECRET: YOUR_API_KEY_HERE' \
  -H 'X-PIGELLO-CUSTOMER-ID: YOUR_API_KEY_HERE' \
  -H 'X-PIGELLO-SERVICE-ID: YOUR_API_KEY_HERE' \
  -H 'X-PIGELLO-SERVICE-VERSION-ID: YOUR_API_KEY_HERE'

Responses

Successful selection

Bodyapplication/json
content_typeobject(Contenttype)required
content_type.​idstring(uuid)
application_idstring(uuid)read-onlyrequired
idstring(uuid)read-onlyrequired

Additional Validation Information:

Must be unique

object_idstring(uuid)required
external_idstringrequired
organizationobject or null(Organization)
hiddenboolean
created_atstring(date-time)read-only
custom_idstring or null<= 128 characters
Response
application/json
{ "content_type": { "id": "497f6eca-6276-4993-bfeb-53cbbbba6f08" }, "application_id": "48ac72d0-a829-4896-a067-dcb1c2b0f30c", "organization": { "id": "497f6eca-6276-4993-bfeb-53cbbbba6f08" }, "id": "497f6eca-6276-4993-bfeb-53cbbbba6f08", "hidden": true, "created_at": "2019-08-24T14:15:22Z", "object_id": "463a83d0-a816-4902-abba-2486e0c0a0bb", "external_id": "string", "custom_id": "string" }

Delete 'Integrationserviceidconnection'

Request

Security
customer_id and application_id and service_id and service_version_id and client_ct and client_object_id and client_secret
Path
pkstringwrite-onlyrequired
curl -i -X DELETE \
  'https://dev.api.pigello.io/integrations/integrationserviceidconnection/{pk}/' \
  -H 'X-PIGELLO-APPLICATION-ID: YOUR_API_KEY_HERE' \
  -H 'X-PIGELLO-CLIENT-CT: YOUR_API_KEY_HERE' \
  -H 'X-PIGELLO-CLIENT-ENTITY: YOUR_API_KEY_HERE' \
  -H 'X-PIGELLO-CLIENT-SECRET: YOUR_API_KEY_HERE' \
  -H 'X-PIGELLO-CUSTOMER-ID: YOUR_API_KEY_HERE' \
  -H 'X-PIGELLO-SERVICE-ID: YOUR_API_KEY_HERE' \
  -H 'X-PIGELLO-SERVICE-VERSION-ID: YOUR_API_KEY_HERE'

Responses

Successful deletion

Response
No content