Attributes
An attribute is a characteristic of a user or an endpoint. It can be a standard attribute that Amazon Pinpoint defines or a custom attribute that you define. For example, you might create custom attributes that capture your users' contact information, their preferences, and the dates when they opted in or out of receiving specific types of messages from you.
The Attributes resource represents custom attributes that you've defined for users and endpoints that are associated with a specific application. You can use this resource to remove one or more custom attributes from the Amazon Pinpoint application. Existing endpoints continue to persist these attributes and these existing values continue to appear on the Amazon Pinpoint console and in export jobs. However, Amazon Pinpoint stops capturing new or changed values for a custom attribute. For information about the attributes that you can use to define an endpoint, see the Endpoint resource.
To retrieve a list of custom attributes and attribute values for a specific user, use the User resource. To add or retrieve custom attributes and attribute values for endpoints, use the Endpoints or Endpoint resource.
URI
/v1/apps/
application-id
/attributes/attribute-type
HTTP methods
PUT
Operation ID: RemoveAttributes
Removes one or more custom attributes, of the same attribute type, from the application. Existing endpoints still have the attributes but Amazon Pinpoint will stop capturing new or changed values for these attributes.
Name | Type | Required | Description |
---|---|---|---|
attribute-type | String | True | The type of attribute or attributes to remove. Valid values are:
|
application-id | String | True | The unique identifier for the application. This identifier is displayed as the Project ID on the Amazon Pinpoint console. |
Name | Type | Required | Description |
---|---|---|---|
accept | String | False | Indicates which content types, expressed as MIME types, the client understands. |
Status code | Response model | Description |
---|---|---|
200 | AttributesResource | The request succeeded. |
400 | MessageBody | The request contains a syntax error (BadRequestException). |
403 | MessageBody | The request was denied because access to the specified resource is forbidden (ForbiddenException). |
404 | MessageBody | The request failed because the specified resource was not found (NotFoundException). |
405 | MessageBody | The request failed because the method is not allowed for the specified resource (MethodNotAllowedException). |
413 | MessageBody | The request failed because the payload for the body of the request is too large (RequestEntityTooLargeException). |
429 | MessageBody | The request failed because too many requests were sent during a certain amount of time (TooManyRequestsException). |
500 | MessageBody | The request failed due to an unknown internal server error, exception, or failure (InternalServerErrorException). |
OPTIONS
Retrieves information about the communication requirements and options that are available for the Attributes resource.
Name | Type | Required | Description |
---|---|---|---|
attribute-type | String | True | The type of attribute or attributes to remove. Valid values are:
|
application-id | String | True | The unique identifier for the application. This identifier is displayed as the Project ID on the Amazon Pinpoint console. |
Status code | Response model | Description |
---|---|---|
200 | None | The request succeeded. |
Schemas
Request bodies
{ "Blacklist": [ "string" ] }
Response bodies
{ "ApplicationId": "string", "AttributeType": "string", "Attributes": [ "string" ] }
Properties
AttributesResource
Provides information about the type and the names of attributes that were removed from all the endpoints that are associated with an application.
Property | Type | Required | Description |
---|---|---|---|
ApplicationId | string | True | The unique identifier for the application. |
Attributes | Array of type string | False | An array that specifies the names of the remaining attributes after any attributes were removed from the endpoints. |
AttributeType | string | True | The type of attribute or attributes that were removed from the endpoints. Valid values are:
|
MessageBody
Provides information about an API request or response.
Property | Type | Required | Description |
---|---|---|---|
Message | string | False | The message that's returned from the API. |
RequestID | string | False | The unique identifier for the request or response. |
UpdateAttributesRequest
Specifies one or more attributes to remove from all the endpoints that are associated with an application.
Property | Type | Required | Description |
---|---|---|---|
Blacklist | Array of type string | False | An array of the attributes to remove from all the endpoints that are associated with the application. The array can specify the complete, exact name of each attribute to remove or it can specify a glob pattern that an attribute name must match in order for the attribute to be removed. |
See also
For more information about using this API in one of the language-specific AWS SDKs and references, see the following: